1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-29 17:37:50 +00:00
Dotfiles/.config/polybar/themes/monolit-dracula/polybar-scripts/vpn-anyconnect-status/vpn-anyconnect-status.sh

10 lines
269 B
Bash
Raw Normal View History

2020-07-27 04:59:00 +00:00
#!/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