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

10 lines
173 B
Bash

#!/bin/sh
connection=$(pgrep -a openvpn$ | head -n 1 | awk '{print $NF }' | cut -d '.' -f 1)
if [ -n "$connection" ]; then
echo "VPN: connection"
else
echo ""
fi