12 lines
190 B
Plaintext
12 lines
190 B
Plaintext
|
#!/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
|