5 lines
118 B
Bash
Executable file
5 lines
118 B
Bash
Executable file
#!/bin/bash
|
|
# WireGuard VPN Tray launcher
|
|
cd "$(dirname "$0")"
|
|
source .venv/bin/activate
|
|
exec python vpn_tray.py "$@"
|