-
Notifications
You must be signed in to change notification settings - Fork 2
/
waybar-style.css
139 lines (119 loc) · 2.33 KB
/
waybar-style.css
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
* {
border: none;
border-radius: 0;
font-family: "DejaVu Sans", "Font Awesome 5 Free";
font-size: 14px;
}
window .modules-left,
window .modules-center,
window .modules-right {
background: rgba(55, 59, 65, 0.85);
padding: 0px 8px 0px 8px;
}
window .modules-left {
border-top-right-radius: 16px;
border-bottom-right-radius: 16px;
}
window .modules-right {
border-top-left-radius: 16px;
border-bottom-left-radius: 16px;
}
window .modules-center {
border-radius: 16px;
}
window#waybar {
background: transparent;
}
window > box {
margin: 5px 0px 5px 0px;
padding: 0px 0px 0px 0px;
background: rgba(43, 48, 59, 0);
color: white;
border-radius: 16px;
min-height: 32px;
}
#workspaces button {
font-weight: bolder;
margin: 3px;
padding: 0px 2px 0px 2px;
background-color: transparent;
color: rgba(255, 255, 255, 0.5);
min-width: 24px;
box-shadow: inset 0 -3px transparent;
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
#workspaces button:hover {
background: transparent;
box-shadow: inset 0 -3px transparent;
color: rgba(255, 255, 255, 0.8);
}
#workspaces button.focused {
background: transparent;
box-shadow: inset 0 -3px #ffffff;
color: rgba(255, 255, 255, 1);
}
#workspaces button.urgent {
box-shadow: inset 0 -3px #cc6666;
color: #cc6666;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#pulseaudio,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#mpd,
#window,
#workspaces,
#custom-gammastep
{
padding: 0px 8px 0px 8px;
margin: 0 5px;
color: #ffffff;
}
#mode {
font-weight: bolder;
color: #f0c674;
}
#mpd.stopped {
color: rgba(255, 255, 255, 0.3);
}
#idle_inhibitor.deactivated {
color: rgba(255, 255, 255, 0.3);
}
#network.disconnected, #network.disabled {
color: rgba(255, 255, 255, 0.3);
}
#clock {
font-weight: bolder;
}
@keyframes blink {
to {
color: #ffffff;
}
}
#battery.critical:not(.charging) {
/* background-color: #f53c3c; */
color: #ffffff;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
}
#custom-notification {
font-family: "NotoSansMono Nerd Font";
}