cfg/.config/i3blocks/wifi
Knut Ahlers 001b490654
First draft of i3blocks status bar
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-12-03 00:43:08 +01:00

19 lines
433 B
Bash
Executable File

#!/bin/bash
interface=$(ip a | grep 'wlp.*:' | sed -E 's/^[0-9]*: ([^:]+):.*/\1/')
# We found no wlp* interface: Get out here
[ -z "${interface}" ] && exit
ip=$(ip a show ${interface} | awk '/inet .* scope global/{ print $2 }' | cut -d '/' -f1)
# We found no ip: Get out here
[ -z "${ip}" ] && exit
network=$(iwgetid -r)
# We found no network: Get out here
[ -z "${network}" ] && exit
printf "\uf1eb %s (%s)" ${network} ${ip}