diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2020-10-03 19:27:15 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2020-10-03 19:27:15 -0400 |
commit | e371d9edd474bcf89cf5d462eaccb8638900b390 (patch) | |
tree | ed07118f5c514a55f23a779a1507640e46fd9ed2 /.local/bin/vpnmenu |
Initial commit
Diffstat (limited to '.local/bin/vpnmenu')
-rwxr-xr-x | .local/bin/vpnmenu | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.local/bin/vpnmenu b/.local/bin/vpnmenu new file mode 100755 index 0000000..d679c49 --- /dev/null +++ b/.local/bin/vpnmenu @@ -0,0 +1,14 @@ +#!/bin/sh + +current=$(expressvpn status | sed "s/.......................//; 1q") + +location=$(expressvpn list recomend | sed "1,4d; s/^.*\t//" | head | dmenu -l 10) + +if [ ! -n "$location" ] +then + notify-send -i "$HOME/.fonts/svg/shield.svg" -a "VPN Module" "Operation aborted" +else + expressvpn disconnect; expressvpn connect "$location" +fi + +# expressvpn disconnect; expressvpn connect "$location" |