blob: abb241f46e8bd6ecc7a2b88673d0893c41504cfa (
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)
if [ "$is_ethernet" = " active" ]; then
inet=$(ifconfig lagg0 | grep inet\ | cut -w -f3)
printf "%s%s\n" $icon_ethernet $inet
elif [ "$(ifconfig wlan0 | grep status | cut -d\: -f2)" = " associated" ]; then
ssid=$(ifconfig wlan0 | grep ssid\ | cut -d'"' -f2)
[ -n "$ssid" ] && printf "%s\"%s\"" $icon_wireless "$ssid"
else
printf "%sNo connection" $icon_down
fi
printf "\n"
|