dotfiles/polybar_scripts/lan.sh

14 lines
261 B
Bash
Raw Normal View History

2021-08-11 23:42:06 -04:00
#!/usr/bin/bash
if [[ "$(cat /sys/class/net/enp0s31f6/operstate)" == "up" ]]; then
echo ""
#echo ""
exit
fi
wlan=$(iwctl station list | grep wlan0 | awk '{ print $2 }')
if [[ "$wlan" == "connected" ]]; then
echo ""
else
echo ""
#echo ""
fi