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)%"