1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-10-07 04:22:53 +00:00
Dotfiles/.config/polybar/polybar-scripts/vpn-anyconnect-status/vpn-anyconnect-status.sh
2020-07-27 07:59:00 +03: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