aboutsummaryrefslogtreecommitdiff
path: root/.scripts/vpn
diff options
context:
space:
mode:
Diffstat (limited to '.scripts/vpn')
-rwxr-xr-x.scripts/vpn32
1 files changed, 32 insertions, 0 deletions
diff --git a/.scripts/vpn b/.scripts/vpn
new file mode 100755
index 0000000..62aab79
--- /dev/null
+++ b/.scripts/vpn
@@ -0,0 +1,32 @@
+#!/bin/env bash
+
+set -e
+
+if [ "$EUID" -eq 0 ]; then
+ echo "Don't use sudo/root pls"
+ exit
+fi
+
+if ! wg &>/dev/null; then
+ wg-quick down wg0
+ echo "Disconnected from Wireguard!"
+ exit
+fi
+
+if sudo pppstats &>/dev/null; then
+ sudo poff uni-tuebingen
+ echo "Disconnected from Tübingen!"
+ exit
+fi
+
+read -p "[T]uebingen or [W]ireguard? " -n 1 -r
+echo
+if [[ $REPLY =~ ^[Tt]$ ]]; then
+ sudo pon uni-tuebingen
+ echo "Connected to Tübingen!"
+ exit
+elif [[ $REPLY =~ ^[Ww]$ ]]; then
+ wg-quick up wg0
+ echo "Connected to Wireguard!"
+ exit
+fi