From 67b82c07ccc288c5f6b4a26747b932c41c11d710 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Sun, 7 May 2023 14:26:57 +0200 Subject: [PATCH] desktop: fix speaker symbol dunst --- modules/services/dunst.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/dunst.nix b/modules/services/dunst.nix index 248c212..608f0f3 100644 --- a/modules/services/dunst.nix +++ b/modules/services/dunst.nix @@ -8,8 +8,8 @@ let colors = import ../themes/colors.nix; # Import colors theme dunst-volume-notification = pkgs.writeShellScriptBin "volume-notify" '' - if [ "$(pulsemixer --get-mute)" = "0" ]; then dunstify -u low -r 1 "īŠŊ $(pulsemixer --get-volume | awk '{print $1}')%" - else dunstify -u low -r 1 "īĒ€ Muted"; fi + if [ "$(pulsemixer --get-mute)" = "0" ]; then dunstify -u low -r 1 " 🔊 $(pulsemixer --get-volume | awk '{print $1}')%" + else dunstify -u low -r 1 "🔈 Muted"; fi ''; dunst-brightness-notification = pkgs.writeShellScriptBin "brightness-notify" '' dunstify -u low -r 1 "ī—Ÿ $(light -G)%"