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
121
|
* {
border: none;
border-radius: 0;
font-family: "monospace";
font-size: 12px;
min-height: 0;
margin: 0px;
}
window#waybar {
/*background: #000000;*/
background: rgba(0, 0, 0, 0.7);
color: gray;
color: #ffffff;
}
#window {
color: #e4e4e4;
font-weight: bold;
}
#workspaces {
padding: 0px;
margin: 0px;
}
#workspaces button {
padding: 0 2px;
margin: 0px;
background: transparent;
color: #ff8700;
/*
color: #00afd7;
color: #ffffff;
border: 1px solid #00afd7;
*/
border: 1px solid #1b1d1e;
font-weight: bold;
}
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
}
#workspaces button.focused {
background: #e88939;
background: #00afd7;
color: #1b1d1e;
}
#workspaces button.urgent {
background: #af005f;
color: #1b1d1e;
}
#mode {
background: #af005f;
color: #1b1d1e;
}
#clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #mode {
padding: 0 3px;
margin: 0 2px;
}
#clock {
}
#battery {
}
#battery icon {
color: red;
}
#battery.charging {
}
@keyframes blink {
to {
background-color: #af005f;
}
}
#battery.warning:not(.charging) {
background-color: #ff8700;
color: #1b1d1e;
}
#battery.critical:not(.charging) {
color: white;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#cpu {
}
#memory {
}
#network {
}
#network.disconnected {
background: #f53c3c;
}
#pulseaudio {
}
#pulseaudio.muted {
}
#custom-spotify {
color: rgb(102, 220, 105);
}
#tray {
}
|