sway/waybar: Use correct muted icon
This commit is contained in:
parent
05d2529db7
commit
a962fea3a8
|
@ -306,6 +306,10 @@ lib.mkIf nixosConfig.sbruder.gui.enable {
|
|||
${pkgs.systemd}/bin/systemctl --user start ${unit}
|
||||
fi
|
||||
'';
|
||||
|
||||
# nerd fonts are abusing arabic which breaks latin text
|
||||
# context: https://github.com/Alexays/Waybar/issues/628
|
||||
lrm = "‎";
|
||||
in
|
||||
lib.generators.toJSON { } {
|
||||
layer = "top";
|
||||
|
@ -399,8 +403,8 @@ lib.mkIf nixosConfig.sbruder.gui.enable {
|
|||
pulseaudio = {
|
||||
format = "{volume}% {icon} {format_source}";
|
||||
format-bluetooth = "{volume}% {icon} {format_source}";
|
||||
format-bluetooth-muted = "遼 {icon} {format_source}"; # FIXME: see below
|
||||
format-muted = "遼 {format_source}"; # FIXME: use normal mute icon (ﱝ ), which for some reason is displayed right of the source?
|
||||
format-bluetooth-muted = "${lrm}ﱝ${lrm} {icon} {format_source}";
|
||||
format-muted = "${lrm}ﱝ${lrm} {format_source}";
|
||||
format-source = "{volume}% ${thinsp}";
|
||||
format-source-muted = "${thinsp}";
|
||||
format-icons = {
|
||||
|
|
Loading…
Reference in a new issue