1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-10 03:21:16 +02:00

no bloat statusbar

This commit is contained in:
TiynGER
2020-03-28 23:45:20 +01:00
parent db1c535fb9
commit 15227bf3c4
3 changed files with 6 additions and 14 deletions

View File

@@ -1,15 +1,7 @@
#!/bin/sh
[ "$(pulsemixer --get-mute)" = "1" ] && printf "🔇\\n" && exit
[ "$(pulsemixer --get-mute)" = "1" ] && printf "M\\n" && exit
vol=$(pulsemixer --get-volume | awk '{print $1}')
if [ "$vol" -gt "70" ]; then
icon="🔊"
elif [ "$vol" -lt "30" ]; then
icon="🔈"
else
icon="🔉"
fi
printf "%s %s%%\\n" "$icon" "$vol"
printf "%s %%\\n" "$vol"