diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-03-21 22:32:21 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-03-21 22:32:21 +0100 |
| commit | f83eb579c255fc764c182a02e70c149d913e9b6a (patch) | |
| tree | 800a57f5d8b32a8366599843925a623e5e11a92f /config/waybar/style.css | |
| parent | 97ffb49313d7dd51ad4ec1f8e15d02c0b8e0f490 (diff) | |
Add niri and firends
Diffstat (limited to 'config/waybar/style.css')
| -rw-r--r-- | config/waybar/style.css | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/config/waybar/style.css b/config/waybar/style.css new file mode 100644 index 0000000..cc182e9 --- /dev/null +++ b/config/waybar/style.css @@ -0,0 +1,102 @@ +* { + font-family: "Input Sans Compressed", sans-serif; + font-size: 13px; +} + +window#waybar { + background-color: #0F261F; + color: #DAE6E3; + transition-property: background-color; + transition-duration: .5s; +} + +window #waybar.hidden { + opacity: 0.2; +} + +button { + /* Use box-shadow instead of border so the text isn't offset */ + border: none; + border-radius: 0; + transition-property: background-color; + transition-duration: .1s; +} + +button:hover { + background: #4F8FE6; +} + +#workspaces button { + color: #DAE6E3; + padding: 0 5px; + background-color: transparent; +} + +#workspaces button:hover { + color: #fff; + background-color: #4F8FE6; +} + +#workspaces button.active { + padding: 0 5px; + background-color: #23C17C; + color: #0F261F; +} + +#workspaces button.urgent { + padding: 0 5px; + background-color: #FA2B00; +} + +#clock, +#battery, +#cpu, +#memory, +#disk, +#temperature, +#backlight, +#network, +#pulseaudio, +#wireplumber, +#custom-media, +#tray, +#mode, +#idle_inhibitor, +#scratchpad, +#power-profiles-daemon, +#mpd { + padding: 0 8px; +} + +#battery { + color: #0F261F; + background-color: #DAE6E3; +} + +#battery.critical:not(.charging) { + background-color: #FA2B00; + color: #DAE6E3; +} + +#battery.warning:not(.charging) { + background-color: #FAED8F; +} + +#power-profiles-daemon { + padding-right: 10px; +} + +#power-profiles-daemon.performance { + background-color: #FA2B00; + color: #0F261F; +} + +#power-profiles-daemon.balanced { + color: #DAE6E3; + background-color: #4F8FE6; +} + +#power-profiles-daemon.power-saver { + background-color: #23C17C; + color: #0F261F; +} |