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
112
113
114
115
116
117
118
119
120
|
* {
font-family: "JetBrainsMono Nerd Font", monospace;
font-weight: bold;
font-size: 16px;
color: #c6d0f5;
}
#waybar {
background-color: rgba(0, 0, 0, 0);
border: none;
box-shadow: none;
}
#workspaces,
#window,
#tray {
background-color: #414559;
padding: 4px 6px;
margin-top: 6px;
margin-left: 6px;
margin-right: 6px;
border-radius: 10px;
border-width: 0px;
}
#clock {
background-color: #414559;
margin-top: 6px;
margin-right: 6px;
padding: 4px 2px;
border-radius: 0 10px 10px 0;
border-width: 0px;
}
#custom-power {
background-color: #414559;
margin-top: 6px;
margin-right: 0px;
padding: 4px 2px;
border-radius: 0px;
border-width: 0px;
}
#network,
#custom-lock {
background-color: #414559;
margin-top: 6px;
margin-left: 6px;
padding: 4px 2px;
border-radius: 10px 0 0 10px;
border-width: 0px;
}
#custom-reboot,
#bluetooth,
#battery,
#pulseaudio,
#custom-temperature,
#memory,
#cpu {
background-color: #414559;
margin-top: 6px;
padding: 4px 2px;
border-width: 0px;
}
#cpu {
border-radius: 0 10px 10px 0;
}
#custpm-temperature.critical,
#pulseaudio.muted {
color: #e78284;
padding-top: 0;
}
#bluetooth:hover,
#network:hover,
#backlight:hover,
#battery:hover,
#pulseaudio:hover,
#custom-temperature:hover,
#memory:hover,
#cpu:hover,
#clock:hover,
#custom-lock:hover,
#custom-reboot:hover,
#custom-power:hover,
#window:hover {
background-color: #414559;
}
#workspaces button:hover {
background-color: #949cbb;
padding: 2px 8px;
margin: 0 2px;
border-radius: 10px;
}
#workspaces button.active {
background-color: #ca9ee6;
color: #ea999c;
padding: 2px 8px;
margin: 0 2px;
border-radius: 10px;
}
#workspaces button {
background: transparent;
border: none;
color: #e5c890;
padding: 2px 8px;
margin: 0 2px;
font-weight: bold;
}
#window {
font-weight: 500;
font-style: italic;
}
|