added wireless symbol to bar if wireless is connected

Signed-off-by: Miles Alan <m@milesalan.com>
master
Maarten van Gompel 4 years ago committed by Miles Alan
parent 435a1e74f1
commit 63d5ec3f7d
  1. 9
      scripts/core/sxmo_statusbar.sh

@ -18,6 +18,13 @@ update() {
CALLINFO=" ${CALLSECONDS}s "
fi
# W symbol if wireless is connect
WIRELESS=""
WLANSTATE="$(tr -d "\n" < /sys/class/net/wlan0/operstate)"
if [ "$WLANSTATE" = "up" ]; then
WIRELESS="W "
fi
# M symbol if modem monitoring is on & modem present
MODEMMON=""
pgrep -f sxmo_modemmonitor.sh && MODEMMON="M "
@ -42,7 +49,7 @@ update() {
# Time
TIME="$(date +%R)"
BAR="${CALLINFO}${MODEMMON}${VOL} ${BATSTATUS}${PCT}% ${TIME}"
BAR="${CALLINFO}${MODEMMON}${WIRELESS}${VOL} ${BATSTATUS}${PCT}% ${TIME}"
xsetroot -name "$BAR"
}

Loading…
Cancel
Save