52 lines
951 B
CSS
52 lines
951 B
CSS
/* Waybar CSS — match your DWM palette + Hermit font */
|
|
|
|
* {
|
|
font-family: Hermit, monospace;
|
|
font-size: 11pt;
|
|
}
|
|
|
|
window#waybar {
|
|
background: #222222;
|
|
color: #eeeeee;
|
|
border-bottom: 0px solid transparent;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0 6px;
|
|
margin: 0 3px;
|
|
border-radius: 6px;
|
|
background: #222222;
|
|
color: #bbbbbb;
|
|
border: 1px solid #444444;
|
|
}
|
|
#workspaces button.active {
|
|
background: #458588; /* your light blue accent */
|
|
color: #eeeeee;
|
|
border-color: #458588;
|
|
}
|
|
#workspaces button:hover {
|
|
background: #444444;
|
|
color: #eeeeee;
|
|
}
|
|
|
|
#cpu, #memory, #clock, #pulseaudio, #battery, #tray,
|
|
#custom-weather, #custom-loadavg, #custom-ip, #custom-docker, #bluetooth {
|
|
padding: 0 10px;
|
|
margin: 0 4px;
|
|
border-radius: 8px;
|
|
background: #222222;
|
|
border: 1px solid #444444;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: #bbbbbb;
|
|
opacity: 0.7;
|
|
}
|
|
#battery.warning {
|
|
color: #ffcc00;
|
|
}
|
|
#battery.critical {
|
|
color: #ff5555;
|
|
}
|
|
|