local-bin/common/vpn
2020-12-22 06:11:00 +02:00

13 lines
213 B
Bash
Executable File

#!/bin/sh
if [ "$1" == "on" ]; then
cmd="c --p2p"
elif [ "$1" == "off" ]; then
cmd="d"
elif [ "$1" == "status" ]; then
cmd="s"
else
echo "Please pass an argument: on, off, status"
exit
fi
doas protonvpn $cmd