feat: WireGuard VPN integration

- Add wg-up/wg-down/wg-status aliases to zshrc
- Add Super+Ctrl+V / Super+Ctrl+Shift+V keybinds to Hyprland
- Add Waybar custom module showing VPN status + traffic
- Add wireguard-status.sh script
This commit is contained in:
Thierry Pouplier
2026-05-05 01:38:07 +00:00
parent 5ee760fbe8
commit 9fe03c724e
4 changed files with 51 additions and 1 deletions

View File

@@ -62,6 +62,11 @@ alias dpa="docker ps -a"
alias dl="docker ps -l -q"
alias dx="docker exec -it"
# WireGuard VPN
alias wg-up="sudo wg-quick up ~/ExoKortex/1-Soma/2-Areas/IT/work-laptop.conf"
alias wg-down="sudo wg-quick down work-laptop"
alias wg-status="sudo wg show"
# Cd
alias ..="cd .."
alias ...="cd ../.."