123456789101112131415161718192021222324252627 |
- #!/bin/sh
- ~/.config/script/autostart &
- bspc monitor -d I II III IV V
- bspc config focus_follows_pointer true
- bspc config pointer_modifier mod1
- bspc config pointer_action1 move
- bspc config pointer_action2 resize_side
- bspc config pointer_action3 resize_corner
- bspc config border_width 0
- bspc config window_gap 10
- bspc config single_monocle false
- bspc config split_ratio 0.50
- bspc config borderless_monocle true
- bspc config gapless_monocle true
- bspc rule -a Alacritty desktop='^1' follow=on
- bspc rule -a Chromium desktop='^2'
- bspc rule -a *:*:ranger desktop='^3'
- bspc rule -a mpv state=floating
- bspc rule -a TelegramDesktop desktop='^5'
- bspc rule -a Zathura desktop='^4' state=tiled follow=on
- bspc rule -a sxiv state=floating
|