blob: 061d1f8bec9b272ac9f8dd6e0f547beaa5f60755 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
# https://sinanmohd.com
####################
## user variables ##
####################
# wireguard config name, located at /etc/wireguard/
conf_name="kay"
# state file location
state_file="/tmp/vpn.dmenu"
if [ ! -e "$state_file" ]
then
if sudo -A -p "撚 initialize vpn: " wg-quick up "$conf_name"
then
touch "$state_file" &&
notify-send "撚 VPN initialized" "Traffic is routing through external server" &&
wip
fi
else
sudo -A -p "撚 halt vpn: " wg-quick down "$conf_name" &&
rm "$state_file" &&
notify-send "撚 VPN Halted" "Connection was dropped" &&
sleep 3 &&
wip
fi
|