summaryrefslogtreecommitdiff
path: root/.local/bin/vpnmenu
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/vpnmenu')
-rwxr-xr-x.local/bin/vpnmenu14
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"