blob: afafd0e314e3047db29df0b57504a75e5200d56d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# https://account.protonvpn.com/downloads
sudo pacman -S --noconfirm wireguard-tools systemd-resolved
# copy all Proton Wireguard config files
sudo cp ../assets/wireguard-config/*.conf /etc/wireguard/
sudo systemctl enable systemd-resolved
sudo systemctl start systemd-resolved
sudo wg-quick up USGA
sudo wg
|