diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-12-25 14:26:51 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-12-25 14:26:51 +0000 |
| commit | dc41873a79b32ed3d34dd7dac09c081f7472d207 (patch) | |
| tree | ba3c80c8d137263a8f346cf32853d15f75094fab /waybar/style.css | |
| parent | f4c682dc6bdeebe9f0c6a20deb7092cf893791a1 (diff) | |
Change most things to symlinks instead of hardlinks
Diffstat (limited to 'waybar/style.css')
| -rw-r--r-- | waybar/style.css | 38 |
1 files changed, 28 insertions, 10 deletions
diff --git a/waybar/style.css b/waybar/style.css index bf9ee33..065056d 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -1,6 +1,6 @@ * { /* `otf-font-awesome` is required to be installed for icons */ - font-family: Iosevka Nerd Font; + font-family: Iosevka SS08; font-size: 13px; } @@ -42,7 +42,7 @@ button { background: rgba(0, 0, 0, 0.2); } -#workspaces button.active { +#workspaces button.focused, button.active { background-color: #434e59; } @@ -55,7 +55,7 @@ button { background-color: #434e59; } -#custom-idle-inhibitor.suspended { +#custom-idle-inhibitor.suspended, #idle_inhibitor.activated { background: #D54B00; } @@ -83,19 +83,37 @@ button { color: #ffffff; } +#pulseaudio.muted { + color: #434e59; +} + +#pulseaudio.warning { + color: #FFBF00; +} + #window, #workspaces { margin: 0 4px; } -#battery.charging.critical { - background: none; +#battery.low:not(.charging) { + color: #eb4d4b; } -#battery.critical { +#battery.warning:not(.charging) { background: #eb4d4b; } +#battery.critical:not(.charging) { + background: #eb4d4b; + color: #ffffff; + animation-name: critical-blink; + animation-duration: 0.5s; + animation-timing-function: steps(2, start); + animation-iteration-count: infinite; + animation-direction: alternate; +} + /* If workspaces is the leftmost module, omit left margin */ .modules-left > widget:first-child > #workspaces { margin-left: 0; @@ -106,10 +124,10 @@ button { margin-right: 0; } -@keyframes blink { - to { - background-color: #ffffff; - color: #000000; +@keyframes critical-blink { + 50% { + background: none; + color: #eb4d4b; } } |
