diff options
author | zachir <zachir@librem.one> | 2022-08-12 04:30:51 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-08-12 04:30:51 -0500 |
commit | c4d96716c05c41a3b18f2326cb588cd19246da5f (patch) | |
tree | aa6b16c2e89ee63d37eb05e38577ec0b0bddea59 /internet |
initial commit
Diffstat (limited to 'internet')
-rwxr-xr-x | internet | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/internet b/internet new file mode 100755 index 0000000..5850a13 --- /dev/null +++ b/internet @@ -0,0 +1,18 @@ +#!/sbin/sh + +case $BLOCK_BUTTON in + 1) "$TERMINAL" -e nmtui; pkill -RTMIN+4 dwmblocks ;; + 2) notify-send "Internet module" "\- Click to connect +X : no wifi connection ++ : wifi connection +_ : no ethernet +- : ethernet working" ;; + 6) "$TERMINAL" -e "$EDITOR" "$0" ;; +esac + +case "$(cat /sys/class/net/w*/operstate 2>/dev/null)" in + down) wifiicon="X" ;; + up) wifiicon="$(awk '/^\s*w/ { print "+", int($3 * 100 / 70) "% " }' /proc/net/wireless)" ;; +esac + +printf "[%s%s]" "$wifiicon" "$(sed "s/down/_/;s/up/-/" /sys/class/net/e*/operstate 2>/dev/null)" |