blob: 340a70aea7c99cae50dc74bd47e37cd6f9569bcb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
icon_ethernet=
icon_down=
icon_wireless=
is_ethernet=$(ifconfig em0 | grep status | cut -d\: -f2)
inet=$(ifconfig lagg0 | grep inet\ | cut -w -f3)
if [ "$is_ethernet" = " active" ]; then
printf "%s%s" $icon_ethernet $inet
elif [ "$(ifconfig wlan0 | grep status | cut -d\: -f2)" = " associated" ]; then
ssid=$(ifconfig wlan0 | sed -n 's/^.*ssid \(.*\) channel.*$/\1/p')
[ -n "$ssid" ] && printf "%s%s %s" $icon_wireless "$ssid" $inet
else
printf "%sOffline" $icon_down
fi
printf "\n"
|