1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
* {
font-family: "Input Sans Compressed", sans-serif;
font-size: 13px;
}
window#waybar {
background-color: #0F261F;
color: #DAE6E3;
transition-property: background-color;
transition-duration: .5s;
}
window #waybar.hidden {
opacity: 0.2;
}
button {
/* Use box-shadow instead of border so the text isn't offset */
border: none;
border-radius: 0;
transition-property: background-color;
transition-duration: .1s;
}
button:hover {
background: #4F8FE6;
}
#workspaces button {
color: #DAE6E3;
padding: 0 5px;
background-color: transparent;
}
#workspaces button:hover {
color: #fff;
background-color: #4F8FE6;
}
#workspaces button.active {
padding: 0 5px;
background-color: #23C17C;
color: #0F261F;
}
#workspaces button.urgent {
padding: 0 5px;
background-color: #FA2B00;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#pulseaudio,
#wireplumber,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#scratchpad,
#power-profiles-daemon,
#mpd {
padding: 0 8px;
}
#battery {
color: #0F261F;
background-color: #DAE6E3;
}
#battery.critical:not(.charging) {
background-color: #FA2B00;
color: #DAE6E3;
}
#battery.warning:not(.charging) {
background-color: #FAED8F;
}
#power-profiles-daemon {
padding-right: 10px;
}
#power-profiles-daemon.performance {
background-color: #FA2B00;
color: #0F261F;
}
#power-profiles-daemon.balanced {
color: #DAE6E3;
background-color: #4F8FE6;
}
#power-profiles-daemon.power-saver {
background-color: #23C17C;
color: #0F261F;
}
#idle_inhibitor {
background: #4F8FE6;
}
#mpd {
color: #0F261F;
background-color: #FAED8F;
}
|