blob: 1195817ef25c0ee93f3a527837055ea9872dc64f (
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
|
window#waybar {
border: 2px solid black;
background-color: black;
}
* {
/* `otf-font-awesome` is required to be installed for icons */
font-family: "BQN386 Unicode DZ";
/* font-family: "PxPlus IBM VGA 9x16"; */
font-size: 26px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 2px;
padding-right: 2px;
min-height: 36px;
margin: 2px;
color: black;
background-color: #DAEFEF;
}
button {
/* Use box-shadow instead of border so the text isn't offset */
box-shadow: inset 0 -3px transparent;
/* Avoid rounded borders under each button name */
border: none;
border-radius: 0;
}
#custom-machi,
#network,
#network.wifi,
#battery,
#temperature,
#backlight,
#pulseaudio,
#clock,
#wireplumber {
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
|