mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 09:53:13 +00:00
10 lines
173 B
Bash
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
|