blob: 2ef85f013ae1004e1795e3ff7e7d571e54a021e3 (
plain) (
blame)
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
|
* {
/* font-family: "curie"; */
font-family: "IBM 3270";
font-size: 14px;
padding: 0px;
margin: 0px;
}
window#waybar {
/* background: transparent; */
background: @background;
}
window#waybar.hidden {
opacity: 0.2;
}
#window {
color: @foreground;
}
#tags {
}
#tags button {
color: @regular2;
background: transparent;
}
#tags button.occupied {
transition: none;
color: @regular3;
background: transparent;
}
#tags button.focused {
color: @background;
background: @regular3;
border-radius: inherit;
}
#tags button:hover {
transition: none;
box-shadow: inherit;
text-shadow: inherit;
color: @bright2;
}
#temperature {
background: transparent;
color: @bright1;
}
#pulseaudio {
color: @bright1;
background: transparent;
}
#battery {
color: @bright3;
background: transparent;
}
.modules-right {
color: @bright1;
}
#network, #cpuTemp, #battery, #pulseaudio, #date, #powerUsage {
padding-left: 15px;
}
|