dot/scripts/toggle-gap.sh

4 lines
116 B
Bash
Raw Permalink Normal View History

2021-10-09 21:20:41 +00:00
#!/bin/sh
2023-03-31 12:05:02 +00:00
GAP=25; bspc config window_gap | grep -q $GAP && bspc config window_gap 0 || bspc config window_gap $GAP
2021-10-09 21:20:41 +00:00