bspwm: Add light mode support
This commit is contained in:
parent
ba7b70a8b7
commit
fdca284c6f
@ -69,10 +69,20 @@ bspc config single_monocle false
|
|||||||
bspc config borderless_monocle false
|
bspc config borderless_monocle false
|
||||||
bspc config gapless_monocle false
|
bspc config gapless_monocle false
|
||||||
# Colors
|
# Colors
|
||||||
bspc config normal_border_color "#31363b" #Unfocused
|
case $THEME in
|
||||||
bspc config active_border_color "#1abc9c" #Focused, but current monitor isn't
|
light)
|
||||||
bspc config focused_border_color "#1d99f3" #Focused completely
|
bspc config normal_border_color "#bdc3c7" #Unfocused
|
||||||
bspc config presel_feedback_color "#eff0f1" #???
|
bspc config active_border_color "#1abc9c" #Focused, but current monitor isn't
|
||||||
|
bspc config focused_border_color "#1d99f3" #Focused completely
|
||||||
|
bspc config presel_feedback_color "#eff0f1" #???
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
bspc config normal_border_color "#31363b" #Unfocused
|
||||||
|
bspc config active_border_color "#1abc9c" #Focused, but current monitor isn't
|
||||||
|
bspc config focused_border_color "#1d99f3" #Focused completely
|
||||||
|
bspc config presel_feedback_color "#eff0f1" #???
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
## Rules
|
## Rules
|
||||||
bspc rule -r '*'
|
bspc rule -r '*'
|
||||||
|
Loading…
Reference in New Issue
Block a user