diff options
author | terminaldweller <thabogre@gmail.com> | 2023-02-07 12:55:19 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2023-02-07 12:55:19 +0000 |
commit | 7f1b2583956602e26e241391bc20ed0623c87460 (patch) | |
tree | 0aabd8a8ae7e784e0ae51eb04f0341e240d61a65 /README.md | |
parent | added different colors for different stati (diff) | |
download | tunneltop-7f1b2583956602e26e241391bc20ed0623c87460.tar.gz tunneltop-7f1b2583956602e26e241391bc20ed0623c87460.zip |
now colors are configurable
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -22,7 +22,23 @@ tunneltop expects its config file to be at at `$HOME/.tunneltoprc`. You can see an example config file below:</br> ```toml -[socks5ir] +[color] +header_fg = 4 +header_bg = 0 +active_fg = 23 +active_bg = 0 +disabled_fg = 8 +disabled_bg = 0 +timeout_fg = 63 +timeout_bg = 0 +unknown_fg = 38 +unknown_bg = 0 +down_fg = 208 +down_bg = 0 +box_fg = 22 +box_bg = 0 + +[tunnel.socks5ir] address = "127.0.0.1" port = 9997 command = "autossh -M 0 -N -D 9997 -o ServerAliveInterval=180 -o ServerAliveCountMax=3 -o ExitOnForwardFailure=yes -l debian -p 22 100.100.100.101" @@ -31,7 +47,7 @@ test_command_result = "200" test_interval = 300 test_timeout = 10 -[socks5_3] +[tunnel.socks5_3] address = "127.0.0.1" port = 9995 command = "autossh -M 0 -N -D 0.0.0.0:9995 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=no -o ServerAliveInterval=180 -o ServerAliveCountMax=3 -o ExitOnForwardFailure=yes -l debian -p 2022 100.100.100.100" |