blob: 5f1664f9beeefc3dc8fedaab4e1ce0e1b6b7ba1a (
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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
/*
********************************************
*░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░*
*░░█▀█░█░░░█░█░█▀▀░░░█░█░█░░░▀█▀░█▀▄░█▀█░░*
*░░█▀▀░█░░░█░█░▀▀█░░░█░█░█░░░░█░░█▀▄░█▀█░░*
*░░▀░░░▀▀▀░▀▀▀░▀▀▀░░░▀▀▀░▀▀▀░░▀░░▀░▀░▀░▀░░*
*░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░*
********************************************
*/
/* https://github.com/jakehamilton/dotfiles */
/* Amazing I love it :))) */
* {
border: none;
border-radius: 0;
font-family: JetBrains Mono;
font-weight: bold;
font-size: 14px;
min-height: 24px;
}
window#waybar {
background: transparent;
}
window#waybar.hidden {
opacity: 0.2;
}
window#waybar.termite #window,
window#waybar.Firefox #window,
window#waybar.Navigator #window,
window#waybar.PCSX2 #window {
color: #2e3440;
background: #e6e6e6;
}
#mpd,
#network,
#pulseaudio,
#temperature,
#cpu,
#memory {
margin-top: 4px;
margin-left: 8px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
transition: none;
}
#workspaces {
margin-top: 4px;
margin-left: 12px;
margin-bottom: 0;
border-radius: 26px;
background: #2e3440;
transition: none;
}
#workspaces button {
transition: none;
color: #d8dee9;
background: transparent;
font-size: 16px;
}
#workspaces button.active {
color: #88c0d0;
}
#workspaces button:hover {
transition: none;
color: #b48ead;
}
#mpd {
color: #2e3440;
background: #88c0d0;
}
#mpd.disconnected,
#mpd.stopped {
color: #d8dee9;
background: #2e3440;
}
#window {
color: #88c0d0;
}
#network {
color: #2e3440;
background: #5e81ac;
}
#pulseaudio {
color: #2e3440;
background: #bf616a;
}
#temperature {
color: #2e3440;
background: #d08770;
}
#cpu {
color: #2e3440;
background: #ebcb8b;
}
#memory {
color: #2e3440;
background: #a3be8c;
}
#clock {
margin-top: 4px;
margin-left: 8px;
margin-right: 12px;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 0;
border-radius: 26px;
transition: none;
color: #d8dee9;
background: #2e3440;
}
#tray {
margin-top: 4px;
margin-right: 12px;
margin-bottom: 0;
transition: none;
color: #d8dee9;
background: transparent;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
|