From 2398cb234ad450dcec0e41a235c7137c3d0f831a Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 19 Jan 2025 18:22:28 +0900 Subject: update on scripts for better notification via swaync --- config/hypr/scripts/Volume.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/hypr/scripts/Volume.sh') diff --git a/config/hypr/scripts/Volume.sh b/config/hypr/scripts/Volume.sh index ac1367b7..af7192c2 100755 --- a/config/hypr/scripts/Volume.sh +++ b/config/hypr/scripts/Volume.sh @@ -60,7 +60,7 @@ dec_volume() { # Toggle Mute toggle_mute() { if [ "$(pamixer --get-mute)" == "false" ]; then - pamixer -m && notify-send -e -u low -i "$iDIR/volume-mute.png" " Muted" + pamixer -m && notify-send -e -u low -i "$iDIR/volume-mute.png" " Mute" elif [ "$(pamixer --get-mute)" == "true" ]; then pamixer -u && notify-send -e -u low -i "$(get_icon)" " Volume:" " Switched ON" fi -- cgit v1.2.3 From 466b077ec3b504a99c72543a82720f1529cdbbfc Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 19 Jan 2025 18:35:32 +0900 Subject: minor volume script correction --- config/hypr/scripts/Volume.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'config/hypr/scripts/Volume.sh') diff --git a/config/hypr/scripts/Volume.sh b/config/hypr/scripts/Volume.sh index af7192c2..b205f8f9 100755 --- a/config/hypr/scripts/Volume.sh +++ b/config/hypr/scripts/Volume.sh @@ -11,7 +11,7 @@ get_volume() { if [[ "$volume" -eq "0" ]]; then echo "Muted" else - echo "$volume%" + echo "$volume %" fi } @@ -34,7 +34,7 @@ notify_user() { if [[ "$(get_volume)" == "Muted" ]]; then notify-send -e -h string:x-canonical-private-synchronous:volume_notif -u low -i "$(get_icon)" " Volume:" " Muted" else - notify-send -e -h int:value:"$(get_volume | sed 's/%//')" -h string:x-canonical-private-synchronous:volume_notif -u low -i "$(get_icon)" " Volume:" " $(get_volume) %" && + notify-send -e -h int:value:"$(get_volume | sed 's/%//')" -h string:x-canonical-private-synchronous:volume_notif -u low -i "$(get_icon)" " Volume Level:" " $(get_volume)" && "$sDIR/Sounds.sh" --volume fi } @@ -90,7 +90,7 @@ get_mic_volume() { if [[ "$volume" -eq "0" ]]; then echo "Muted" else - echo "$volume%" + echo "$volume %" fi } @@ -98,7 +98,7 @@ get_mic_volume() { notify_mic_user() { volume=$(get_mic_volume) icon=$(get_mic_icon) - notify-send -e -h int:value:"$volume" -h "string:x-canonical-private-synchronous:volume_notif" -u low -i "$icon" " Mic-Level:" " $volume %" + notify-send -e -h int:value:"$volume" -h "string:x-canonical-private-synchronous:volume_notif" -u low -i "$icon" " Mic Level:" " $volume" } # Increase MIC Volume @@ -140,4 +140,4 @@ elif [[ "$1" == "--mic-dec" ]]; then dec_mic_volume else get_volume -fi +fi \ No newline at end of file -- cgit v1.2.3