From 85bf7cfd03ce7ad49dd7d4e816724dfc5c8658fa Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Sat, 16 May 2026 22:09:16 +0200 Subject: [PATCH] waybar: restore audio glyphs and raise muted-state contrast The pulseaudio module had empty strings where Nerd Font glyphs were meant to be, so the volume / mute / bluetooth indicators rendered blank. Re-inject the proper PUA codepoints (F027/F028 volume, F6A9 mute, F293 bluetooth). Bump #pulseaudio.muted from #3a3a46 to #8e8e9a so it stays readable against the bar background. Co-Authored-By: Claude Opus 4.7 --- dotfiles/desktop/.config/waybar/config.jsonc | 6 +++--- dotfiles/desktop/.config/waybar/style.css | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dotfiles/desktop/.config/waybar/config.jsonc b/dotfiles/desktop/.config/waybar/config.jsonc index 8ba2a07..1a6cf72 100644 --- a/dotfiles/desktop/.config/waybar/config.jsonc +++ b/dotfiles/desktop/.config/waybar/config.jsonc @@ -74,9 +74,9 @@ "pulseaudio": { "format": "{icon} {volume}%", - "format-muted": " muted", - "format-bluetooth": "{icon} {volume}% ", - "format-icons": { "default": ["", "", ""] }, + "format-muted": " muted", + "format-bluetooth": "{icon} {volume}% ", + "format-icons": { "default": ["", "", ""] }, "on-click": "swayosd-client --output-volume mute-toggle", "on-click-right": "pavucontrol" }, diff --git a/dotfiles/desktop/.config/waybar/style.css b/dotfiles/desktop/.config/waybar/style.css index 67febb5..cee9a46 100644 --- a/dotfiles/desktop/.config/waybar/style.css +++ b/dotfiles/desktop/.config/waybar/style.css @@ -57,7 +57,7 @@ window#waybar { #network { color: #4a90d9; } #network.disconnected { color: #3a3a46; } #pulseaudio { color: #7dcfff; } -#pulseaudio.muted { color: #3a3a46; } +#pulseaudio.muted { color: #8e8e9a; } #battery { color: #d0d0d0; } #battery.charging { color: #9ec07c; } #battery.warning { color: #e0af68; }