dotfiles/dot_config/waybar/style.css

65 lines
1.3 KiB
CSS
Raw Normal View History

2023-05-02 18:11:43 +02:00
* {
font-family: 'Noto Sans Mono', 'Font Awesome 6 Free', 'Font Awesome 6 Brands', monospace;
font-size: 13px;
}
window#waybar {
2025-06-24 17:23:46 +02:00
background: #22242b;
border-radius: 32px;
/* Optional: Schatten für mehr Tiefe */
box-shadow: 0 2px 10px rgba(0,0,0,0.3);
/* Optional: Abstand vom Bildschirmrand */
margin: 16px;
}
2025-06-10 14:50:09 +02:00
#workspaces button:hover {
2025-06-24 17:23:46 +02:00
box-shadow: inherit;
text-shadow: inherit;
}
#workspaces button {
2025-06-24 17:23:46 +02:00
border-radius: 12px;
padding: 4px 8px;
}
2025-06-10 14:50:09 +02:00
#workspaces button.active {
background-color: #64727D; /* vorher focused */
box-shadow: inset 0 -3px #ffffff;
}
2025-06-10 14:50:09 +02:00
#workspaces button.visible {
/* Optional: z.B. leicht abgewandelte Hervorhebung */
box-shadow: inset 0 -3px #51afef;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
2025-06-10 14:50:09 +02:00
#workspaces button.empty {
/* Beispiel: ausgegraut oder weniger auffällig */
color: #888888;
background-color: transparent;
2025-05-22 13:58:05 +02:00
}
2025-06-10 14:50:09 +02:00
#workspaces button.persistent {
/* Beispiel: spezielle Farbe für persistente Workspaces */
background-color: #222831;
color: #bfc9d1;
}
#workspaces button.hidden {
/* Beispiel: Workspace ist versteckt */
opacity: 0.5;
2025-05-22 13:58:05 +02:00
}
#mode {
background-color: #64727D;
box-shadow: inset 0 -3px #ffffff;
}
2025-04-28 13:05:43 +02:00
#window,
#workspaces {
margin: 0 4px;
}