1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-28 17:17:50 +00:00
Dotfiles/.config/polybar/themes/monolit-dracula/polybar-scripts/vpn-openvpn-isrunning/vpn-openvpn-isrunning.sh
2020-09-05 14:43:37 +03: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