dotfiles/bin/vpn-status

9 lines
170 B
Plaintext
Raw Normal View History

2020-09-12 09:59:24 +02: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