aboutsummaryrefslogtreecommitdiff
path: root/vpn
diff options
context:
space:
mode:
Diffstat (limited to 'vpn')
-rwxr-xr-xvpn6
1 files changed, 3 insertions, 3 deletions
diff --git a/vpn b/vpn
index 6d5d7fe..b22667f 100755
--- a/vpn
+++ b/vpn
@@ -3,7 +3,7 @@
note()
{
command -v notify-send > /dev/null &&
- notify-send "撚 vpn" "$1"
+ notify-send " vpn" "$1"
printf "\n%s\n" "$1"
}
@@ -14,10 +14,10 @@ main()
if ip -details link show "$wg_conf" 2> /dev/null | grep --quiet "wireguard"
then
- sudo -A -p "撚 halt vpn: " wg-quick down "$wg_conf" &&
+ sudo -A -p " halt, authentication required: " wg-quick down "$wg_conf" &&
note "connection was dropped"
else
- sudo -A -p "撚 initialize vpn: " wg-quick up "$wg_conf" &&
+ sudo -A -p " init, authentication required: " wg-quick up "$wg_conf" &&
note "traffic routed through $wg_conf"
fi