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