Browse Source

Update Volume.sh

added ` --allow-boost --set-limit 150` to make it boost up to 150 cause its better
pull/194/head
Sipping 2 years ago committed by GitHub
parent
commit
af9cdf3666
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      config/hypr/scripts/Volume.sh

4
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

Loading…
Cancel
Save