blob: d0c069ae0af4eaf88df1b80dee3559b9a30fd012 (
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
|
/* window.eDP-1 * { font-size: 18px; } */
* {
font-family: "curie";
font-size: 10px;
padding: 0px;
margin: 0px;
}
window#waybar {
background: #2e3440;
}
window#waybar.hidden {
opacity: 0.2;
}
#window {
color: #8FBCBB;
}
#tags {
}
#tags button {
color: #4c566a;
background: transparent;
}
#tags button.occupied {
transition: none;
color: #a3be8c;
background: transparent;
}
#tags button.focused {
color: #81a1c1;
background: #4C566A;
border-radius: inherit;
}
#tags button:hover {
transition: none;
box-shadow: inherit;
text-shadow: inherit;
color: #81a1c1;
}
#temperature {
background: #2e3440;
color: #81A1C1;
}
#pulseaudio {
color: #D08770;
background: #2E3440;
}
#battery {
color: #A3BE8C;
background: #2E3440;
}
.modules-right {
color: #8FBCBB;
}
#network, #cpuTemp, #battery, #pulseaudio, #date, #powerUsage {
padding-left: 15px;
}
|