mirror of
https://github.com/vale981/bspwm
synced 2025-03-07 02:31:38 -05:00
7 lines
151 B
Bash
Executable file
7 lines
151 B
Bash
Executable file
#! /bin/sh
|
|
|
|
BW=$(bspc config border_width)
|
|
bspc config window_gap -$BW
|
|
for side in top right bottom left ; do
|
|
bspc config ${side}_padding $BW
|
|
done
|