Merge branch 'master' of github.com:LukeSmithxyz/voidrice

This commit is contained in:
Luke Smith 2018-10-07 08:34:11 -04:00
commit 623b770bdb

View file

@ -8,18 +8,18 @@ INTERFACE="${BLOCK_INSTANCE:-wlan0}"
[[ "$(cat /sys/class/net/$INTERFACE/operstate)" = 'down' ]] && echo 📡 && exit
QUALITY=$(grep $INTERFACE /proc/net/wireless | awk '{ print int($3 * 100 / 70) }')
QUALITY=$(grep $INTERFACE /proc/net/wireless | awk '{ print int($3 * 100 / 70 - 1) }')
echo 📶 $QUALITY%
echo 📶 $QUALITY%
# color
if [[ $QUALITY -ge 80 ]]; then
echo "#00FF00"
elif [[ $QUALITY -lt 80 ]]; then
echo "#FFF600"
elif [[ $QUALITY -lt 60 ]]; then
echo "#FFAE00"
echo "#00FF00"
elif [[ $QUALITY -lt 40 ]]; then
echo "#FF0000"
echo "#FF0000"
elif [[ $QUALITY -lt 60 ]]; then
echo "#FF8000"
elif [[ $QUALITY -lt 80 ]]; then
echo "#FFF600"
fi