6 lines
190 B
Bash
Executable file
6 lines
190 B
Bash
Executable file
#!/bin/sh -e
|
|
# Toggle NordVPN
|
|
if test $# -gt 0
|
|
then nordvpn connect "$@"
|
|
else nordvpn status | grep --color=never Disconnected && nordvpn connect de || nordvpn disconnect; nordvpn status
|
|
fi
|