2020-03-08 10:19:00 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# _
|
|
|
|
# | |__ ___ _ ____ ___ __ ___
|
|
|
|
# | '_ \/ __| '_ \ \ /\ / / '_ ` _ \
|
|
|
|
# | |_) \__ \ |_) \ V V /| | | | | |
|
|
|
|
# |_.__/|___/ .__/ \_/\_/ |_| |_| |_|
|
|
|
|
# |_|
|
|
|
|
|
|
|
|
#~~~~~~~~~~~~~~~~
|
|
|
|
# WINDOW MANAGER
|
|
|
|
#~~~~~~~~~~~~~~~~
|
2020-03-12 20:42:39 +01:00
|
|
|
bspc monitor -d one two three four five six seven eight nine ten
|
2020-03-08 10:19:00 +01:00
|
|
|
bspc desktop -f 1
|
|
|
|
|
2020-03-12 20:42:39 +01:00
|
|
|
bspc config border_width 1
|
|
|
|
bspc config window_gap 3
|
|
|
|
bspc config normal_border_color "#353234"
|
|
|
|
bspc config focused_border_color "#144949"
|
2020-03-08 10:19:00 +01:00
|
|
|
bspc config split_ratio 0.52
|
|
|
|
bspc config borderless_monocle true
|
|
|
|
bspc config gapless_monocle true
|
|
|
|
|
|
|
|
#~~~~~~~~~~~~
|
|
|
|
# APPS RULES
|
|
|
|
#~~~~~~~~~~~~
|
|
|
|
bspc rule -a qutebrowser desktop='^3'
|
|
|
|
bspc rule -a discord desktop='^4'
|
|
|
|
bspc rule -a TelegramDesktop desktop='^4'
|
|
|
|
|
|
|
|
#~~~~~~~~~~~
|
|
|
|
# AUTOSTART
|
|
|
|
#~~~~~~~~~~~
|
|
|
|
${HOME}/.config/autostart/autostart.sh &
|
|
|
|
|
|
|
|
|