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
|
* {
font-family: "0xProto Nerd Font";
font-weight: bold;
}
#waybar {
background: #1a1b26;
color: #fff;
}
#workspaces button {
color: #fff;
border-radius: 0;
}
#workspaces button.active {
background: #ad8ee6;
}
#workspaces button.special {
background: #7aa2f7;
}
#workspaces button.urgent {
background: #f7768e;
}
#workspaces button:hover {
box-shadow: none;
text-shadow: none;
background: #32344a;
border: none;
transition: none;
color: #7aa2f7;
}
#battery,
#cpu,
#memory,
#pulseaudio,
#network,
#clock,
#tray,
#temperature,
#workspaces button {
padding: 7 7;
}
#network {
background: #449dab;
}
#pulseaudio {
background: #ad8ee6;
}
#pulseaudio.bluetooth {
background: #7aa2f7;
}
#battery,
#cpu,
#memory,
#temperature {
background: #9ece6a;
}
#battery.warning,
#cpu.warning,
#memory.warning {
background: #e0af68;
}
#battery.urgent,
#cpu.urgent,
#memory.urgent,
#network.disabled {
background: #ff9e64;
}
#battery.critical,
#cpu.critical,
#pulseaudio.muted,
#memory.critical,
#network.disconnected,
#temperature.critical {
background: #f7768e
}
#window {
margin-left: 10px;
background: #32344a;
padding: 7;
}
|