From 9eacd86fa20aeec3f044ca7581a7f1d61e17e629 Mon Sep 17 00:00:00 2001 From: Adam <56338480+adastx@users.noreply.github.com> Date: Mon, 6 Sep 2021 15:29:47 +0200 Subject: Capped volume at 100% --- .config/i3/custom/volume_up.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 .config/i3/custom/volume_up.sh (limited to '.config/i3/custom') 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 + -- cgit v1.2.3-70-g09d2