diff options
author | Adam Carpenter <atc@53hor.net> | 2020-05-10 21:13:46 -0400 |
---|---|---|
committer | Adam Carpenter <atc@53hor.net> | 2020-05-10 21:13:46 -0400 |
commit | b184782970853b3c479f6c4ad833a36a3aea7afa (patch) | |
tree | 318233a807c61414a2696b5300adf3cec6e700e5 /i3blocks-audio.sh | |
download | scripts-b184782970853b3c479f6c4ad833a36a3aea7afa.tar.xz scripts-b184782970853b3c479f6c4ad833a36a3aea7afa.zip |
mega update
Diffstat (limited to 'i3blocks-audio.sh')
-rwxr-xr-x | i3blocks-audio.sh | 17 |
1 files changed, 17 insertions, 0 deletions
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 |