internet script fix

This commit is contained in:
Luke Smith 2020-04-14 11:10:26 -04:00
parent b53b599bc5
commit e88b3a72b8
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252

View file

@ -4,7 +4,7 @@
# Show 🌐 if connected to ethernet or ❎ if none. # Show 🌐 if connected to ethernet or ❎ if none.
case $BLOCK_BUTTON in case $BLOCK_BUTTON in
1) $TERMINAL -e nmtui ;; 1) setsid "$TERMINAL" -e nmtui & ;;
3) notify-send "🌐 Internet module" "\- Click to connect 3) notify-send "🌐 Internet module" "\- Click to connect
📡: no wifi connection 📡: no wifi connection
📶: wifi connection with quality 📶: wifi connection with quality
@ -13,7 +13,7 @@ case $BLOCK_BUTTON in
" ;; " ;;
esac esac
grep "down" /sys/class/net/w*/operstate && wifiicon="📡" || grep -q "down" /sys/class/net/w*/operstate && wifiicon="📡" ||
wifiicon="$(grep "^\s*w" /proc/net/wireless | awk '{ print "📶", int($3 * 100 / 70) "%" }')" wifiicon="$(grep "^\s*w" /proc/net/wireless | awk '{ print "📶", int($3 * 100 / 70) "%" }')"
printf "%s %s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/🌐/" /sys/class/net/e*/operstate)" printf "%s %s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/🌐/" /sys/class/net/e*/operstate)"