mirror of
https://github.com/vale981/bspwm
synced 2025-03-08 19:21:37 -05:00
7 lines
141 B
Bash
Executable file
7 lines
141 B
Bash
Executable file
#! /bin/sh
|
|
|
|
BW=$(bspc config border_width)
|
|
bspc config window_gap -$BW
|
|
for m in $(bspc query -M) ; do
|
|
bspc pad "$m" $BW $BW $BW $BW
|
|
done
|