dotfiles/waybar/style.css

144 lines
2.1 KiB
CSS

* {
all: initial;
border: none;
border-radius: 0;
min-height: 20px;
font-family: "Symbols Nerd Font", monospace;
}
#waybar {
background-color: transparent;
}
#waybar.hidden {
opacity: 0.2;
}
tooltip {
background-color: #383c4a;
border-radius: 10px;
}
tooltip label {
color: white;
}
#custom-pacman,
#custom-recorder,
#mode,
#clock,
#battery,
#disk,
#privacy,
#memory,
#bluetooth,
#network {
transition: none;
border-radius: 10px;
background-color: #383c4a;
color: #ffffff;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 8px;
padding-right: 8px;
margin-right: 4px;
margin-left: 4px;
}
#backlight,
#pulseaudio {
transition: none;
background-color: #383c4a;
color: #ffffff;
margin: 0px;
}
#pulseaudio:not(.microphone) {
margin-left: 4px;
border-radius: 10px 0 0 10px;
padding-right: 8px;
padding-left: 8px;
}
#backlight {
border-radius: 0 10px 10px 0;
padding-left: 8px;
padding-right: 8px;
margin-right: 4px;
}
#workspaces {
transition: none;
border-radius: 10px;
background-color: #383c4a;
color: #7c818c;
margin-right: 4px;
margin-left: 4px;
}
#workspaces button {
padding-top: 4px;
padding-bottom: 4px;
padding-left: 8px;
padding-right: 8px;
}
#workspaces button:hover {
border-radius: inherit;
background-color: #666768;
}
#bluetooth.connected,
#bluetooth.on {
background-color: #26a65b;
}
#bluetooth.disabled,
#bluetooth.off {
background-color: #f53c3c;
}
#idle_inhibitor.activated {
background-color: #26a65b;
}
#battery.charging {
color: #ffffff;
background-color: #26a65b;
}
#battery.warning:not(.charging) {
background-color: #ffbe61;
color: black;
}
#battery.critical:not(.charging) {
background-color: #383c4a;
color: #ffffff;
animation-name: redblink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#network.wifi,
#network.ethener {
background-color: #26a65b;
}
#network.disabled,
#network.disconnected {
background-color: #f53c3c;
}
@keyframes redblink {
to {
background-color: #f53c3c;
}
}
#custom-recorder {
background-color: #26a65b;
}