Fix icons for volume

This commit is contained in:
2021-11-21 14:36:10 +00:00
parent 5a8323fa47
commit 043ce9c05e

View File

@@ -19,10 +19,10 @@ vol="$(pamixer --get-volume)"
if [ "$vol" -gt "70" ]; then
icon=""
elif [ "$vol" -lt "30" ]; then
elif [ "$vol" -gt "30" ]; then
icon=""
else
icon=""
icon=""
fi
echo "$icon $vol%"