2022-08-09 11:27:28 +03:00
|
|
|
* {
|
2022-08-09 16:43:55 +03:00
|
|
|
font-family: JetBrains Mono, Roboto, Helvetica, monospace, sans-serif;
|
2022-08-09 11:27:28 +03:00
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar {
|
|
|
|
background-color: rgba(43, 48, 59, 0.5);
|
2022-08-09 16:43:55 +03:00
|
|
|
border-top: 3px solid rgba(100, 114, 125, 0.5);
|
2022-08-09 11:27:28 +03:00
|
|
|
color: #ffffff;
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: .5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar.hidden {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar.termite {
|
|
|
|
background-color: #3F3F3F;
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button {
|
|
|
|
padding: 0 5px;
|
|
|
|
background-color: transparent;
|
|
|
|
color: #ffffff;
|
2022-08-09 16:43:55 +03:00
|
|
|
box-shadow: inset 0 3px transparent;
|
2022-08-09 11:27:28 +03:00
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button:hover {
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
2022-08-09 16:43:55 +03:00
|
|
|
box-shadow: inset 0 3px #ffffff;
|
2022-08-09 11:27:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.focused {
|
|
|
|
background-color: #64727D;
|
2022-08-09 16:43:55 +03:00
|
|
|
box-shadow: inset 0 3px #ffffff;
|
2022-08-09 11:27:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.urgent {
|
|
|
|
background-color: #eb4d4b;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mode {
|
|
|
|
background-color: #64727D;
|
2022-08-09 16:43:55 +03:00
|
|
|
border-top: 3px solid #ffffff;
|
2022-08-09 11:27:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#clock,
|
|
|
|
#battery,
|
|
|
|
#cpu,
|
|
|
|
#memory,
|
|
|
|
#disk,
|
|
|
|
#temperature,
|
|
|
|
#backlight,
|
|
|
|
#network,
|
|
|
|
#pulseaudio,
|
|
|
|
#custom-media,
|
|
|
|
#tray,
|
|
|
|
#mode,
|
|
|
|
#idle_inhibitor,
|
|
|
|
#mpd {
|
|
|
|
padding: 0 10px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#window,
|
|
|
|
#workspaces {
|
|
|
|
margin: 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If workspaces is the leftmost module, omit left margin */
|
|
|
|
.modules-left > widget:first-child > #workspaces {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If workspaces is the rightmost module, omit right margin */
|
|
|
|
.modules-right > widget:last-child > #workspaces {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blink {
|
|
|
|
to {
|
|
|
|
background-color: #ffffff;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#battery.critical:not(.charging) {
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-direction: alternate;
|
|
|
|
}
|
|
|
|
|
|
|
|
label:focus {
|
|
|
|
background-color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#language {
|
|
|
|
padding: 0 5px;
|
|
|
|
margin: 0 0px;
|
|
|
|
min-width: 16px;
|
|
|
|
}
|
|
|
|
|