summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2024-01-15 11:48:50 +0000
committerSean Whitton <spwhitton@spwhitton.name>2024-01-16 17:17:31 +0000
commit0a25a48115ed00af486955e16060655cc2fade31 (patch)
treea842df025704676c6e9db017891e0f3a1fdf43ed /scripts
parentccb5894f525fc0076e5f643cbef299dd81090f08 (diff)
downloaddotfiles-0a25a48115ed00af486955e16060655cc2fade31.tar.gz
i3status-wrapper: implement commands to change the column count
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/desktop/i3status-wrapper5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/desktop/i3status-wrapper b/scripts/desktop/i3status-wrapper
index b4e90dd9..2431e74c 100755
--- a/scripts/desktop/i3status-wrapper
+++ b/scripts/desktop/i3status-wrapper
@@ -252,6 +252,11 @@ unless (fork // warn "couldn't fork command pipe reader") {
};
kill USR1 => $i3status;
}
+ } elsif ($cmd =~ /^cols (incr|decr)$/) {
+ $info{paper_ws}{$info{focused_ws}}{ncols}
+ += $1 eq "incr" ? 1 : -1;
+ normalise_ws_cols();
+ kill USR1 => $i3status;
}
tied(%info)->unlock;
}