aboutsummaryrefslogtreecommitdiff
path: root/vpn
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-03-20 17:12:40 +0530
committersinanmohd <sinan@firemail.cc>2023-03-20 17:12:40 +0530
commit4387ee91cf388be1a2769755c5993e1f35497602 (patch)
treede312020092d00437ee8e248ecdbb7668977a735 /vpn
parent91a695a17cd0c77369a80680c59dd1fe715dfe4d (diff)
font: switch to font awesome for icons
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