1
0
Fork 0
dotfiles/waybar/style.css

75 lines
1.1 KiB
CSS

* {
border: none;
border-radius: 0;
font-family: 'Dejavu Sans', sans-serif;
font-size: 12px;
min-height: 0;
}
window#waybar {
background-color: black;
color: #ffffff;
}
window#waybar.hidden {
opacity: 0.2;
}
#workspaces button {
padding: 0 5px;
background-color: transparent;
color: #ffffff;
}
#workspaces button.focused {
border: 1px solid #4c7899;
background-color: #285577;
}
#workspaces button.urgent {
border: 1px solid red;
background-color: #eb4d4b;
}
#clock,
#battery,
#cpu,
#memory,
#temperature,
#backlight,
#network,
#pulseaudio,
#custom-media,
#custom-vpn,
#custom-timew,
#tray,
#mode,
#idle_inhibitor,
#mpd {
padding: 0 2px;;
margin: 0 0 0 10px;
color: #ffffff;
}
#mode {
padding: 0 5px;
background-color: #64727D;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
#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;
}