diff options
Diffstat (limited to 'scripts/toggle-gap.sh')
-rwxr-xr-x | scripts/toggle-gap.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/toggle-gap.sh b/scripts/toggle-gap.sh new file mode 100755 index 0000000..d1eef2d --- /dev/null +++ b/scripts/toggle-gap.sh @@ -0,0 +1,3 @@ +#!/bin/sh +GAP=16; bspc config window_gap | grep -q $GAP && bspc config window_gap 0 || bspc config window_gap $GAP + |