diff options
author | justsaumit <justsaumit@draconyan.xyz> | 2022-02-27 07:00:19 +0530 |
---|---|---|
committer | justsaumit <justsaumit@draconyan.xyz> | 2022-02-27 07:00:19 +0530 |
commit | b7c8da835bb251862a3b2b23458bd2f4c5f58f5f (patch) | |
tree | 5b934e387371202fb2bf9fb689b254bacfe354ac /scripts/vpn-menu | |
parent | 7eb981e3ac9742ed1fefe49e7ef058f783e63f76 (diff) |
Pushing old local updates
Diffstat (limited to 'scripts/vpn-menu')
-rw-r--r-- | scripts/vpn-menu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vpn-menu b/scripts/vpn-menu index 1862205..87d429b 100644 --- a/scripts/vpn-menu +++ b/scripts/vpn-menu @@ -1,5 +1,5 @@ #!/bin/sh vpnid=$(nmcli con | grep "vpn" | cut -d " " -f 1 | dmenu -p "Select VPN to activate/deactivate") -actdeact=$(echo "" | dmenu -p "Activate or Deactivate? (up or down)") +actdeact=$(echo -e "up\ndown" | dmenu -p "Activate or Deactivate? (up or down)") nmcli con $actdeact id $vpnid |