summaryrefslogtreecommitdiff
path: root/i3blocks-net.sh
diff options
context:
space:
mode:
Diffstat (limited to 'i3blocks-net.sh')
-rwxr-xr-xi3blocks-net.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/i3blocks-net.sh b/i3blocks-net.sh
deleted file mode 100755
index d0a87a4..0000000
--- a/i3blocks-net.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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"