nixos-config/modules/themes/fair-and-square/config/bspwm/bspwmrc

31 lines
783 B
Plaintext
Raw Normal View History

2020-12-29 14:32:59 +00:00
#!/usr/bin/env sh
2020-08-16 08:33:44 +00:00
2020-10-06 22:24:55 +00:00
# Open all of the programs needed.
2020-12-29 14:32:59 +00:00
pkill polybar; polybar "fds-bar" &
pkill feh; feh --bg-fill $HOME/.background-image
pkill dunst; dunst &
2020-08-16 08:33:44 +00:00
2020-10-06 22:24:55 +00:00
# Removing all rules at startup to prevent duplicating rules.
2020-08-16 08:33:44 +00:00
bspc rule -r "*"
# Set up the desktops (workspaces) for the monitor
2021-01-04 15:37:05 +00:00
bspc monitor -d web text dev graphics 3d mail music vm
2020-08-16 08:33:44 +00:00
bspc config border_width 2
2020-12-29 14:32:59 +00:00
bspc config window_gap 5
2020-08-16 08:33:44 +00:00
bspc config split_ratio 0.50
bspc config borderless_monocle true
bspc config gapless_monocle true
2020-12-29 14:32:59 +00:00
bspc config focused_border_color "#e9d3ce"
2020-08-16 08:33:44 +00:00
bspc config focus_follows_pointer true
# Set the default cursor to pointer
xsetroot -cursor_name left_ptr
# Rules
bspc rule -a code-oss desktop=^2
bspc rule -a firefox desktop=^1
2020-10-06 22:24:55 +00:00
bspc rule -a emacs state=tiled
2020-08-16 08:33:44 +00:00