blob: 4d9ed3c6c4c0d0d006fc591907fb1db43ef9a3d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
set $text {{ hex .bright_white }}
set $text2 {{ hex .normal_white }}
set $bg {{ hex .normal_black }}
#set $bg2 {{ hex (lighter .normal_black 0.2) }}
set $bg2 {{ hex .dim_white }}
set $main {{ hex .accent }}
set $main2 {{ hex .accent_darkerdarker }}
set $urgent {{ hex .bright_red }}
set $urgent2 {{ hex .normal_red }}
set $indicator_focused {{ hex .normal_yellow }}
set $indicator_unfocused $bg
client.focused $main $main $text $indicator_focused $main
#client.focused_inactive $bg $bg $text2 $indicator_unfocused $bg
client.focused_inactive $main2 $main2 $text2 $indicator_unfocused $main2
client.unfocused $bg $bg $text2 $indicator_unfocused $bg
#client.unfocused $main2 $main2 $text2 $indicator_unfocused $main2
client.urgent $urgent2 $urgent $text $indicator_focused $urgent
|