From e41164cc452089c01f6764458ceb0127ab40c928 Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Thu, 8 Feb 2024 13:02:03 +0200 Subject: 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 --- vpn | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 vpn (limited to 'vpn') 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 -- cgit v1.2.3