summaryrefslogtreecommitdiff
path: root/.config/i3/custom
diff options
context:
space:
mode:
Diffstat (limited to '.config/i3/custom')
-rwxr-xr-x.config/i3/custom/volume_up.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/i3/custom/volume_up.sh b/.config/i3/custom/volume_up.sh
new file mode 100755
index 0000000..c03d0ef
--- /dev/null
+++ b/.config/i3/custom/volume_up.sh
@@ -0,0 +1,10 @@
+#!/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
+