dotfiles/de/home/.config/eww/scripts/bar/nmcli-vpn
2025-03-05 21:00:06 -08:00

9 lines
183 B
Bash
Executable file

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