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
2023-02-14 11:02:19 +01:00
echo ""
2020-09-12 09:59:24 +02:00
else
echo ""
fi