1
0
Fork 0
dotfiles/bin/vpn-status

9 lines
170 B
Plaintext
Raw Normal View History

2020-09-12 07:59:24 +00:00
#!/bin/bash
# export VPN_NAME=MyVPN from dotfiles/secrets/vpn
if [ "$(nmcli -g GENERAL.STATE con show $VPN_NAME)" == "activated" ]; then
echo ""
else
echo ""
fi