diff options
-rwxr-xr-x | vpn | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -31,6 +31,11 @@ # Configurations CONF_DIR=YOUR_CONFIG_DIR +set_terminal_title() +{ + echo -ne "\033]0;$1 VPN\007" +} + set_routes() { local devtun=tun0 @@ -46,3 +51,6 @@ fi set_routes +# Change title of current terminal +set_terminal_title $TYPE + |