From af9cdf3666be2f1bafb3acb6a5741beb115ca6ee Mon Sep 17 00:00:00 2001 From: Sipping <82241081+Sipper1236@users.noreply.github.com> Date: Mon, 1 Apr 2024 22:01:05 +0000 Subject: [PATCH] Update Volume.sh added ` --allow-boost --set-limit 150` to make it boost up to 150 cause its better --- config/hypr/scripts/Volume.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/scripts/Volume.sh b/config/hypr/scripts/Volume.sh index e8612c3..968d4f5 100755 --- a/config/hypr/scripts/Volume.sh +++ b/config/hypr/scripts/Volume.sh @@ -44,7 +44,7 @@ inc_volume() { if [ "$(pamixer --get-mute)" == "true" ]; then pamixer -u && notify_user fi - pamixer -i 5 && notify_user + pamixer -i 5 --allow-boost --set-limit 150 && notify_user } # Decrease Volume @@ -52,7 +52,7 @@ dec_volume() { if [ "$(pamixer --get-mute)" == "true" ]; then pamixer -u && notify_user fi - pamixer -d 5 && notify_user + pamixer -d 5 --allow-boost --set-limit 150 && notify_user } # Toggle Mute