diff options
Diffstat (limited to 'vpn')
-rwxr-xr-x | vpn | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |