blob: 5e1e949966ace559ee203dc74f06f7b89da756d4 (
plain)
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
|
* {
font-family: "Fira Code";
font-weight: bold;
font-size: 12px;
}
window#waybar {
background-color: transparent;
}
#window {
background-color: #6b6b6b;
border-radius: 0px;
padding: 8px 12px 8px 8px;
margin: 0px 0;
}
window#waybar.empty #window {
background: rgba(12, 12, 12, 0);
}
.modules-left {
padding: 3px 3px 0px 3px;
}
.modules-right {
padding: 3px 3px 0px 3px;
}
.modules-center {
padding: 3px 3px 0px 3px;
}
#workspaces {
background-color: #6b6b6b;
border-radius: 0px;
padding: 4px 4px 3px 6px;
margin: 4px 0;
}
#workspaces button {
min-height: 0;
padding: 0 7px;
margin-right: 2px;
color: #919191;
}
#workspaces button.urgent {
color: #f5e0dc;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#workspaces button.empty {
color: #919191;
}
#workspaces button.visible {
color: #bababa;
}
#workspaces button.active {
color: #bababa;
}
@keyframes blink {
to {
color: #6b6b6b;
background-color: #dcf5f3;
}
}
#wireplumber {
background-color: #6b6b6b;
border-radius: 0px;
padding: 8px 8px 8px 20px;
margin: 4px 0;
color: #bababa;
}
#wireplumber.muted {
color: #bababa;
}
#clock {
background-color: #6b6b6b;
padding: 8px 10px 10px 10px;
margin: 4px 0;
color: #bababa;
}
#network {
background-color: #6b6b6b;
color: #bababa;
padding: 8px;
margin: 4px 0;
}
#network.disabled {
color: #f38ba8;
}
#battery {
background-color: #6b6b6b;
color: #bababa;
padding: 8px;
margin: 4px 0;
}
#backlight {
background-color: #6b6b6b;
color: #bababa;
padding: 8px;
margin: 4px 0;
}
|