mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
339 B
9 lines
339 B
#!/usr/bin/env sh
|
|
#
|
|
|
|
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon="^c#FF0000^^d^ -%"
|
|
|
|
[ ! -n "${wifiicon+var}" ] && wifiicon=$(grep "^\s*w" /proc/net/wireless | awk '{ print "", int($3 * 100 / 70) "%" }')
|
|
|
|
printf "%s %s\n" "$(cat /sys/class/net/e*/operstate | sed "s/down/^c#FF0000^^d^/;s/up//")" "$wifiicon"
|