dotfiles/.config/i3/i3bar/wifi.sh
Severin Kaderli 858b7462f5 Add icon to wifi.sh
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2017-03-30 19:24:22 +02:00

10 lines
175 B
Bash
Executable file

#!/bin/bash
# wifi.sh
if [ "$(cat /sys/class/net/$INTERFACE/operstate)" = "down" ]; then
echo " Wifi not connected"
fi
SSID=$(iwgetid -r)
echo " Connected to $SSID"