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
|
* {
font-family: Inter Regular;
font-size: 12pt;
color: white;
}
window#waybar {
background-color: black;
padding: 5px;
}
#workspaces button {
padding: 0 10px;
background-color: transparent;
border-radius: 0;
}
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.5);
}
#workspaces button.focused {
background-color: rgba(255, 255, 255, 0.3);
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#clock,
#battery,
#network,
#pulseaudio,
#custom-media,
#tray {
padding: 0 15px;
border-left: 2px solid rgba(255, 255, 255, 0.2);
font-family: "RobotoMono Nerd Font";
}
|