diff options
Diffstat (limited to 'bspwm/.config')
-rwxr-xr-x | bspwm/.config/bspwm/bspwmrc | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc index 472e32e..0eff3f8 100755 --- a/bspwm/.config/bspwm/bspwmrc +++ b/bspwm/.config/bspwm/bspwmrc | |||
@@ -1,16 +1,32 @@ | |||
1 | #! /bin/sh | 1 | #!/bin/bash |
2 | |||
3 | sxhkd & | ||
4 | |||
5 | bspc monitor -d term web music files code virt chat game IX X | ||
6 | 2 | ||
3 | # bspwm | ||
4 | bspc monitor -d 1 2 3 4 5 6 | ||
7 | bspc config border_width 0 | 5 | bspc config border_width 0 |
8 | bspc config window_gap 8 | 6 | bspc config window_gap 8 |
9 | bspc config focus_follows_pointer true | ||
10 | bspc config split_ratio 0.50 | 7 | bspc config split_ratio 0.50 |
8 | bspc config focus_follows_pointer true | ||
11 | bspc config borderless_monocle true | 9 | bspc config borderless_monocle true |
12 | bspc config gapless_monocle true | 10 | bspc config gapless_monocle true |
13 | 11 | ||
12 | # rules | ||
14 | bspc rule -a Chromium desktop='^2' | 13 | bspc rule -a Chromium desktop='^2' |
14 | bspc rule -a Steam desktop='^6' | ||
15 | |||
16 | # scratchpad | ||
17 | bspc rule -a scratchpad sticky=on state=floating hidden=on | ||
18 | [ "$(ps -x | grep -c 'scratchpad')" -eq "1" ] && st -c scratchpad -e ~/bin/scratch & | ||
15 | 19 | ||
16 | ~/bartest | lemonbar -F "#000000" & | 20 | # autostart |
21 | xrdb -merge ~/.Xresources & | ||
22 | xsetroot -cursor_name left_ptr & | ||
23 | sxhkd & | ||
24 | xss-lock -- slock & | ||
25 | xset b off & | ||
26 | xset s 300 & | ||
27 | ~/.fehbg & | ||
28 | urxvtd & | ||
29 | ~/.local/bin/bat_check.sh & | ||
30 | picom & | ||
31 | dunst & | ||
32 | ~/bin/panel | ||