Great Renaming, i3blocks officially changed

This commit is contained in:
Luke Smith
2018-12-16 16:50:42 -05:00
parent eb7ad7220a
commit 865cfdb029
18 changed files with 51 additions and 55 deletions

18
.scripts/statusbar/internet Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
case $BLOCK_BUTTON in
1) $TERMINAL -e nmtui ;;
3) pgrep -x dunst >/dev/null && notify-send "<b>🌐 Internet module:</b>
- 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/🌐/")"