blob: 58bae86b21aa4c5d3f1238fd47a9f08bb54101d5 (
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
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
|
window.eDP-1 * { font-size: 18px; }
* {
font-family: "IBM 3270";
font-size: 12px;
}
window#waybar {
background: none;
border-bottom: 3px solid #8FBCBB;
}
window#waybar.hidden {
opacity: 0.2;
}
#window {
color: #8FBCBB;
/* background: #2E3440; */
}
#tags {
/* background: #2e3440; */
}
#tags button {
/* transition: none; */
color: #4c566a;
background: transparent;
border-radius: 0px;
}
#tags button.occupied {
transition: none;
color: #a3be8c;
background: transparent;
}
#tags button.focused {
color: #81a1c1;
/* border-bottom: 3px solid #81a1c1; */
background: #4C566A;
border-radius: inherit;
}
#tags button:hover {
transition: none;
box-shadow: inherit;
text-shadow: inherit;
color: #81a1c1;
}
#temperature {
background: #2e3440;
color: #81A1C1;
/* border-bottom: 3px solid #6a7796; */
}
#pulseaudio {
color: #D08770;
background: #2E3440;
/* border-bottom: 3px solid #6a7796; */
}
#battery {
color: #A3BE8C;
background: #2E3440;
/* border-bottom: 3px solid #6a7796; */
}
#network, #cpuTemp, #battery, #pulseaudio, #date, #powerUsage {
padding-left: 15px;
}
#battery.critical:not(.charging) {
background-color: #d8dee9;
color: #2e3440;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes blink {
to {
background-color: #bf616a;
color: #d8dee9;
}
}
#tray {
color: #d8dee9;
background: #2E3440;
/* border-bottom: 3px solid #6a7796; */
}
#tags button.focused, #battery, #pulseaudio {
border-bottom: 3px solid #8FBCBB;
}
|