reconcile

This commit is contained in:
randomuser 2022-07-08 03:34:55 +00:00
parent 12f5bac3b9
commit 98705dc892
2 changed files with 12 additions and 0 deletions

View File

@ -33,6 +33,7 @@ sh:
cp -f sh/tmenu_run $(DESTDIR)$(PREFIX)/bin
cp -f sh/ss $(DESTDIR)$(PREFIX)/bin
cp -f sh/net $(DESTDIR)$(PREFIX)/bin
cp -f sh/bspwm-toggle-gaps $(DESTDIR)$(PREFIX)/bin
mkc: c/scream c/timer c/boid c/anaconda c/colors

11
sh/bspwm-toggle-gaps Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
gaps="$(bspc config top_padding)"
if [ "$gaps" -eq 20 ]; then
bspc config window_gap 0
bspc config top_padding 18
else
bspc config window_gap 3
bspc config top_padding 20
fi