diff options
Diffstat (limited to '.config/bspwm/bspwmrc')
-rwxr-xr-x | .config/bspwm/bspwmrc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc new file mode 100755 index 0000000..c0a4328 --- /dev/null +++ b/.config/bspwm/bspwmrc @@ -0,0 +1,19 @@ +#!/bin/sh + +pgrep -x sxhkd > /dev/null || sxhkd & +$HOME/.config/bspwm/panel & +xdo above -t $(xdo id -n root) $(xdo id -n lemonbar) + +bspc monitor -d 1 2 3 4 5 6 7 8 9 + +bspc config border_width 2 +bspc config window_gap 8 + +bspc config normal_border_color '#7c6f64' +bspc config focused_border_color '#d79921' + +bspc config split_ratio 0.54 +bspc config borderless_monocle false +bspc config gapless_monocle false +bspc config focus_follows_pointer true +bspc config honor_size_hints true |