summaryrefslogtreecommitdiff
path: root/i3blocks-net.sh
blob: d0a87a46c2b85fa71049e14740e53862bca8cd84 (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 | tr '\n' ' ')
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"