diff options
Diffstat (limited to 'config/bspwm')
-rwxr-xr-x | config/bspwm/bspwmrc | 25 | ||||
-rwxr-xr-x | config/bspwm/colors | 6 |
2 files changed, 31 insertions, 0 deletions
diff --git a/config/bspwm/bspwmrc b/config/bspwm/bspwmrc new file mode 100755 index 0000000..7b9d7a8 --- /dev/null +++ b/config/bspwm/bspwmrc @@ -0,0 +1,25 @@ +#! /bin/sh +source ~/.config/bspwm/colors + +bspc config border_width 2 +bspc config window_gap 12 + +bspc config split_ratio 0.50 + +bspc config focused_border_color $COLOR0 +bspc config active_border_color $COLOR0 +bspc config normal_border_color $COLOR11 + +bspc config borderless_monocle true +bspc config gapless_monocle true +bspc config apply_floating_atom true +bspc config history_aware_focus true +bspc config ignore_ewmh_focus true + +bspc rule -a Gimp desktop=^8 floating=on follow=on +bspc rule -a Inkscape desktop=^7 floating=on + + +bspc monitor -d I II III IV V VI VII VIII IX X XI XII XIII + +compton & diff --git a/config/bspwm/colors b/config/bspwm/colors new file mode 100755 index 0000000..63977ca --- /dev/null +++ b/config/bspwm/colors @@ -0,0 +1,6 @@ +#! /bin/sh +source ~/.colors + +bspc config focused_border_color $COLOR11 +bspc config active_border_color $COLOR11 +bspc config normal_border_color $COLOR0 |