2019-12-23 03:44:56 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Removing all rules at startup to prevent duplicating rules.
|
|
|
|
bspc rule -r "*"
|
|
|
|
|
|
|
|
# Set up the desktops (workspaces) for the monitor
|
|
|
|
bspc monitor -d I II III IV V
|
|
|
|
|
2020-04-29 15:58:14 +00:00
|
|
|
bspc config border_width 2
|
2019-12-23 03:44:56 +00:00
|
|
|
bspc config window_gap 9
|
|
|
|
|
2020-05-21 15:16:15 +00:00
|
|
|
bspc config split_ratio 0.50
|
2019-12-23 03:44:56 +00:00
|
|
|
bspc config borderless_monocle true
|
|
|
|
bspc config gapless_monocle true
|
2020-05-01 13:32:25 +00:00
|
|
|
bspc config focused_border_color "#88C0D0"
|
2019-12-23 03:44:56 +00:00
|
|
|
bspc config focus_follows_pointer true
|
|
|
|
|
2020-05-21 15:16:15 +00:00
|
|
|
# Set the default cursor to pointer
|
|
|
|
xsetroot -cursor_name left_ptr
|
|
|
|
|
2019-12-23 03:44:56 +00:00
|
|
|
# Rules
|
|
|
|
bspc rule -a code-oss desktop=^2
|
|
|
|
bspc rule -a firefox desktop=^1
|
|
|
|
|