summaryrefslogtreecommitdiff
path: root/vpn
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2026-08-04 01:21:17 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2026-08-04 01:21:17 +0300
commit9763dd58e32f5f4726dc0188ee9a0c17147be466 (patch)
tree8311166c6777d9806bf789974c0dce05234b3de7 /vpn
parent8579e0cdb54b5305bfbe167d19dea89b12f76575 (diff)
New way of doing some things I guess.HEADmaster
Changes to be committed: modified: Vencord/settings/settings.json modified: X11/xinit modified: appimageupdate deleted: backlight modified: btop/btop.conf modified: clockpower modified: htop/htoprc modified: keybinds modified: lock modified: nvim/init.vim deleted: qBittorrent/ICEBERG.qbtheme deleted: qBittorrent/ayuDark.qbtheme deleted: vpn modified: xrec modified: zsh/aliases modified: zsh/env modified: zsh/zshrc
Diffstat (limited to 'vpn')
-rwxr-xr-xvpn16
1 files changed, 0 insertions, 16 deletions
diff --git a/vpn b/vpn
deleted file mode 100755
index 7bc5d43..0000000
--- a/vpn
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-set -e
-
-case $1 in
-
- up)
- sudo wg-quick up vpn ;;
-
- down)
- sudo wg-quick down vpn ;;
-
- status)
- sudo wg ;;
-
-esac