voidrice/.scripts/statusbar/i3internet
Kyle K 2c7e1cd0bc i3internet: strip leading whitespace from /proc/net/wireless output
on my system 'grep ^w /proc/net/wireless' doesn't return a result due to
leading space being present in front of wlo1 wifi iface:

"  wlo1: 0000   55.  -55.  -256        0      0      0      0      5"

As a result the signal icon wasn't showing up. Solution is to strip it. Tested on T430s which was ok to begin with, no
regression.
2018-11-29 20:45:29 -06:00

18 lines
572 B
Bash
Executable file

#!/bin/sh
case $BLOCK_BUTTON in
1) $TERMINAL -e nmtui ;;
3) pgrep -x dunst >/dev/null && notify-send "<b>Internet module:</b>
- Left click for \`nmtui\` for wifi access
📡: no wifi connection
📶: wifi connection with quality
❎: no ethernet
🌐: ethernet working
" ;;
esac
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon="📡"
[ ! -n "${wifiicon+var}" ] && wifiicon=$(grep "^\s*w" /proc/net/wireless | awk '{ print "📶", int($3 * 100 / 70) "%" }')
printf "%s %s" "$wifiicon" "$(cat /sys/class/net/e*/operstate | sed "s/down/❎/;s/up/🌐/")"