dotfiles/de/home/.config/waybar/scripts/nmcli_vpn
2024-03-27 15:15:01 -06:00

9 lines
177 B
Bash
Executable file

#!/bin/bash
if $(nmcli -g GENERAL.STATE c s Home|grep -q '\bactiv'); then
echo "going down"
nmcli connection down Home
else
echo "going up"
nmcli connection up Home
fi