mirror of
https://github.com/vale981/bspwm
synced 2025-03-14 06:46:37 -04:00
8 lines
166 B
Text
8 lines
166 B
Text
![]() |
#! /bin/sh
|
||
|
|
||
|
BW=$(bspc get border_width)
|
||
|
bspc set window_gap -$BW
|
||
|
for m in $(bspc list_monitors --quiet | cut -d ' ' -f 1) ; do
|
||
|
bspc pad "$m" $BW $BW $BW $BW
|
||
|
done
|