From b184782970853b3c479f6c4ad833a36a3aea7afa Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Sun, 10 May 2020 21:13:46 -0400 Subject: mega update --- i3blocks-audio.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 i3blocks-audio.sh (limited to 'i3blocks-audio.sh') diff --git a/i3blocks-audio.sh b/i3blocks-audio.sh new file mode 100755 index 0000000..84f883d --- /dev/null +++ b/i3blocks-audio.sh @@ -0,0 +1,17 @@ +#!/bin/sh +low=25 +mid=50 +high=75 +icon_low=󰕿 +icon_mid=󰖀 +icon_high=󰕾 +icon_mute=󰝟 + +[ $(pulsemixer --get-mute) -eq 1 ] && printf "$icon_mute\n" && exit + +volume=$(pulsemixer --get-volume | cut -d' ' -f1) +icon= +[ $volume -lt $low ] && icon=$icon_low +[ $volume -ge $low ] && [ $volume -lt $high ] && icon=$icon_mid +[ $volume -ge $high ] && icon=$icon_high +printf "%s %s%%\n" $icon $volume -- cgit v1.2.3