Browse Source

Fix volume block icons

master
Riyyi 6 years ago
parent
commit
ff23720281
  1. 4
      .scripts/wm/volume.sh

4
.scripts/wm/volume.sh

@ -18,9 +18,9 @@ else
COLOR="#FFF"
VOLUME="$($MEDIACONTROL getvolume)%"
if [ "$VOLUME" -ge "50" ]; then
if [ "${VOLUME%?}" -ge "50" ]; then
SYMBOL=""
elif [ "$VOLUME" -ge "25" ]; then
elif [ "${VOLUME%?}" -ge "25" ]; then
SYMBOL=""
else
SYMBOL=""

Loading…
Cancel
Save