mirror of
https://github.com/danbulant/dotfiles
synced 2026-06-22 00:02:24 +00:00
63 lines
1 KiB
CSS
Executable file
63 lines
1 KiB
CSS
Executable file
* {
|
|
/* `otf-font-awesome` is required to be installed for icons */
|
|
font-family: "Iosevka Nerd Font";
|
|
border: none;
|
|
min-height: 0;
|
|
margin: 1px 3px;
|
|
}
|
|
|
|
#waybar {
|
|
background-color: #ffffff;
|
|
color: #383a42;
|
|
transition-property: background-color;
|
|
transition-duration: .5s;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Module */
|
|
#clock,
|
|
#cpu,
|
|
#memory,
|
|
#network,
|
|
#pulseaudio,
|
|
#tray,
|
|
#mpd,
|
|
#disk,
|
|
#battery,
|
|
#backlight,
|
|
#workspaces {
|
|
padding-left: 0.6em;
|
|
padding-right: 0.6em;
|
|
margin: 1px 2px;
|
|
}
|
|
|
|
#battery.charging, #battery.plugged {
|
|
color: #fdd835;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0;
|
|
font-size: 0.9em;
|
|
margin: 2px 2px;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
}
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
color: #e28743;
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: #ec7875;
|
|
}
|