26 lines
788 B
Bash
Executable File
26 lines
788 B
Bash
Executable File
#!/bin/sh
|
|
|
|
bspc config border_width 1
|
|
bspc config window_gap 8
|
|
bspc config top_padding 20
|
|
|
|
bspc config split_ratio 0.52
|
|
bspc config borderless_monocle true
|
|
bspc config gapless_monocle true
|
|
bspc config focus_by_distance true
|
|
bspc config focus_follows_pointer true
|
|
|
|
|
|
bspc monitor -d I II III IV V VI VII VIII IX X
|
|
|
|
bspc rule -a Gimp desktop=^8 follow=on floating=on
|
|
bspc rule -a mplayer2 floating=on
|
|
bspc rule -a python2 floating=on
|
|
bspc rule -a Kupfer.py focus=on
|
|
bspc rule -a Screenkey manage=off
|
|
|
|
pgrep bar | xargs kill -9
|
|
ps aux | grep "status.py" | awk '{print $2}' | xargs kill -9
|
|
ps aux | grep "bar" | awk '{print $2}' | xargs kill -9
|
|
(python $HOME/.config/bspwm/bar.py | bar -g x20 -B '#ff252525' -F '#fff9f8f5' -f "Meslo LG L DZ" &)
|