You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
550 B
24 lines
550 B
#! /bin/sh
|
|
|
|
sxhkd &
|
|
|
|
while :; do
|
|
bspc subscribe --count 1 node_focus > /dev/null || break
|
|
bspc node focused.floating --layer above
|
|
bspc node focused.floating --layer normal
|
|
done &
|
|
|
|
bspc monitor -d I II III IV V VI VII VIII IX X
|
|
|
|
# Focus folows mouse
|
|
bspc config focus_follows_pointer true
|
|
|
|
bspc config border_width 1
|
|
bspc config window_gap 16
|
|
|
|
bspc config split_ratio 0.52
|
|
bspc config borderless_monocle true
|
|
bspc config gapless_monocle true
|
|
|
|
# Window rules
|
|
bspc rule -a Chromium desktop='^9'
|
|
|