dotfiles/.config/polybar/scripts/vpn-anyconnect-status.sh
2024-01-29 08:31:23 -06:00

10 lines
269 B
Bash

#!/bin/sh
IFACE=$(ifconfig | grep cscotun | awk '{print $1}')
if [ "$IFACE" = "cscotun*" ]; then
echo "#1 %{u#55aa55}$(ifconfig cscotun0 | grep inet | awk '{print $2}' | cut -f2 -d ':')%{u-}"
else
echo "#1 %{F#FF0000}%{u#FF0000}VPN DISCONNECTED%{u-}%{F-}"
fi