diff options
author | sinanmohd <sinan@firemail.cc> | 2023-03-20 17:12:40 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-03-20 17:12:40 +0530 |
commit | 4387ee91cf388be1a2769755c5993e1f35497602 (patch) | |
tree | de312020092d00437ee8e248ecdbb7668977a735 /vpn | |
parent | 91a695a17cd0c77369a80680c59dd1fe715dfe4d (diff) |
font: switch to font awesome for icons
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 |