summaryrefslogtreecommitdiff
path: root/vpn
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2024-02-08 13:02:03 +0200
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2024-02-08 13:02:03 +0200
commite41164cc452089c01f6764458ceb0127ab40c928 (patch)
tree7b61822b723f14dc694fb8e54bce8706543dde3f /vpn
parent2c77874f1f6b23e947f040c187a4df65f147f462 (diff)
Overall better functionality + new scripts.
Changes to be committed: new file: vpn modified: X11/xinit modified: zsh/aliases modified: zsh/zshrc modified: zsh/env modified: color-picker modified: keybinds modified: nvpower modified: pmenu modified: Vencord/settings/settings.json modified: zathura/zathurarc modified: ranger/rifle.conf modified: ranger/rc.conf modified: btop/btop.conf
Diffstat (limited to 'vpn')
-rwxr-xr-xvpn16
1 files changed, 16 insertions, 0 deletions
diff --git a/vpn b/vpn
new file mode 100755
index 0000000..7bc5d43
--- /dev/null
+++ b/vpn
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+set -e
+
+case $1 in
+
+ up)
+ sudo wg-quick up vpn ;;
+
+ down)
+ sudo wg-quick down vpn ;;
+
+ status)
+ sudo wg ;;
+
+esac