diff options
Diffstat (limited to '.config/i3/custom/volume_up.sh')
-rwxr-xr-x | .config/i3/custom/volume_up.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/.config/i3/custom/volume_up.sh b/.config/i3/custom/volume_up.sh deleted file mode 100755 index c03d0ef..0000000 --- a/.config/i3/custom/volume_up.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -max_volume_pc=$1 -current_volume_pc=$(pactl list sinks | grep '^[[:space:]]Volume:' | head -n $(( $SINK + 1 )) | tail -n 1 | sed -e 's,.* \([0-9][0-9]*\)%.*,\1,') -if (($current_volume_pc < $max_volume_pc-5)) ; then - pactl set-sink-volume @DEFAULT_SINK@ +5% && $refresh_i3status -else - a=$(($max_volume_pc - $current_volume_pc)) - pactl set-sink-volume @DEFAULT_SINK@ +$a% && $refresh_i3status -fi - |