109 lines
1.7 KiB
CSS
109 lines
1.7 KiB
CSS
* {
|
|
font-family: "Cantarell", "DejaVu Sans", "Symbols Nerd Font", sans-serif;
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
window#waybar {
|
|
background-color: rgba(0, 0, 0, 0.80);
|
|
color: #e5e5e5;
|
|
border: none;
|
|
transition-property: background-color;
|
|
transition-duration: 0.3s;
|
|
}
|
|
|
|
/* Versteckt-Status */
|
|
window#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
background: transparent;
|
|
}
|
|
|
|
button:hover {
|
|
background: rgba(255, 255, 255, 0.06);
|
|
box-shadow: none;
|
|
}
|
|
|
|
#workspaces {
|
|
margin: 0 6px;
|
|
}
|
|
#workspaces button {
|
|
padding: 0 8px;
|
|
background-color: transparent;
|
|
color: #737373;
|
|
}
|
|
#workspaces button.active {
|
|
background-color: rgba(255, 255, 255, 0.10);
|
|
color: #e5e5e5;
|
|
}
|
|
|
|
#workspaces button.visible {
|
|
background-color: transparent;
|
|
color: #888888;
|
|
}
|
|
#workspaces button:hover {
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: #eb4d4b;
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#network,
|
|
#pulseaudio {
|
|
padding: 4px 10px;
|
|
}
|
|
|
|
/* Uhr mittig, etwas größer */
|
|
#clock {
|
|
font-size: 14px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Akku-Styles, inkl. Warnung/Kritisch */
|
|
#battery {
|
|
color: #e5e5e5;
|
|
}
|
|
|
|
#battery.warning:not(.charging) {
|
|
color: #ffa07a;
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
color: #ff6347;
|
|
}
|
|
|
|
/* Netzwerk */
|
|
#network {
|
|
color: #e5e5e5;
|
|
}
|
|
|
|
#network.disconnected {
|
|
color: #ff6347;
|
|
}
|
|
|
|
/* Lautstärke */
|
|
#pulseaudio {
|
|
color: #e5e5e5;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: #888888;
|
|
}
|
|
|
|
/* Tray (falls du ihn später aktivierst) */
|
|
#tray {
|
|
background-color: transparent;
|
|
}
|
|
|
|
window#waybar.solo {
|
|
background-color: rgba(0, 0, 0, 0.95);
|
|
}
|