dots/bspwm/bspwmrc

26 lines
477 B
Plaintext
Raw Permalink Normal View History

2023-03-05 19:00:44 +01:00
#!/bin/sh
sxhkd &
picom &
2023-04-03 16:05:30 +02:00
polybar top &
polybar bottom &
xsetroot -cursor_name left_ptr
2023-04-15 22:59:10 +02:00
hsetroot -solid "#262626"
2023-04-03 16:05:30 +02:00
dunst &
2023-03-05 19:00:44 +01:00
# Monitor #
2023-04-03 16:05:30 +02:00
bspc monitor eDP-1 -d I II III IV
bspc monitor HDMI-1 -d I II III IV
2023-03-05 19:00:44 +01:00
# config
bspc config border_width 2
2023-04-22 07:17:07 +02:00
bspc config window_gap 10
2023-03-05 19:00:44 +01:00
bspc config split_ratio 0.5
# colors
bspc config normal_border_color "#222222"
bspc config acitve_border_color "#222222"
2023-04-03 16:05:30 +02:00
bspc config focused_border_color "#ffffff"
bspc config urgent_border_color "#fb0f0f"
2023-04-15 22:59:10 +02:00