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
|
/*
********************************************
*░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░*
*░░█▀█░█░░░█░█░█▀▀░░░█░█░█░░░▀█▀░█▀▄░█▀█░░*
*░░█▀▀░█░░░█░█░▀▀█░░░█░█░█░░░░█░░█▀▄░█▀█░░*
*░░▀░░░▀▀▀░▀▀▀░▀▀▀░░░▀▀▀░▀▀▀░░▀░░▀░▀░▀░▀░░*
*░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░*
********************************************
*/
/* 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, #battery,
#network, #pulseaudio, #temperature, #cpu, #custom-memory {
margin-left: 8px;
padding-left: 16px;
padding-right: 16px;
}
#workspaces, #mpd, #battery,
#network, #pulseaudio, #temperature, #cpu, #custom-memory, #workspaces, #clock, #tray {
margin-top: 4px;
margin-bottom: 2px;
transition: none;
border-radius: 6px;
}
#battery {
color: #b48ead;
background: #4c566a;
}
#workspaces {
margin-left: 12px;
background: #2e3440;
}
#workspaces button {
transition: none;
color: #d8dee9;
background: transparent;
font-size: 16px;
}
#workspaces button.active {
color: #a3be8c;
text-shadow: 0px 0px 1px #a3be8c;
}
#workspaces button:hover {
transition: none;
color: #d08770;
}
#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: #b48ead;
}
#temperature {
color: #2e3440;
background: #d08770;
}
#cpu {
color: #2e3440;
background: #ebcb8b;
}
#custom-memory {
color: #2e3440;
background: #a3be8c;
}
#clock {
margin-left: 8px;
margin-right: 12px;
padding-left: 16px;
padding-right: 16px;
color: #d8dee9;
background: #2e3440;
}
#tray {
margin-right: 12px;
color: #d8dee9;
background: transparent;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #bf616a;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
|