From a6b9427a2f73f92fb01be3aa509ecae8e9ef6471 Mon Sep 17 00:00:00 2001 From: Steven L Date: Thu, 23 Apr 2020 16:30:24 -0400 Subject: [PATCH] Changing commands to use `SetEnv` instead as it is more compressed. --- Environment-Variables.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Environment-Variables.md b/Environment-Variables.md index a0c9a0e..0d90356 100644 --- a/Environment-Variables.md +++ b/Environment-Variables.md @@ -4,7 +4,7 @@ A [new feature](https://github.com/shazow/ssh-chat/pull/333) of `ssh-chat` is th The simplest variable is the `SSHCHAT_THEME` variable which allows you to define what theme you would like for your session. This can be defined to match any theme defined within `ssh-chat`, so for example to connect using the `solarized` theme, which is normally activated by running `/theme solarized`, you can instead do the following: ```bash -$ SSHCHAT_THEME=solarized ssh -o SendEnv=SSHCHAT_THEME -i my_id_file username@ssh.chat +$ ssh -o SetEnv SSHCHAT_THEME=solarized username@ssh.chat ``` Upon joining, your session's theme will automatically be `solarized`. This works for all themes (`mono`, `colors`, `hacker`, `solarized`, etc). @@ -13,7 +13,7 @@ Upon joining, your session's theme will automatically be `solarized`. This works `ssh-chat` supports the ability to log messages with a datetime stamp next to each received message. This behavior is enabled by running a `/timestamp` command within the chat. It can be turned on before connecting by doing the following: ```bash -$ SSHCHAT_TIMESTAMP=1 ssh -o SendEnv=SSHCHAT_TIMESTAMP -i my_id_file username@ssh.chat +$ ssh -o SetEnv SSHCHAT_TIMESTAMP=1 username@ssh.chat ``` It also supports the ability to pre-load a datetime format as well. @@ -24,6 +24,6 @@ The `TERM` variable is meant to enable specific modes of `ssh-chat` which change To turn on a specific mode, you can run the following: ```bash -$ TERM=bot ssh -o SendEnv=TERM -i my_id_file username@ssh.chat +$ ssh -o SetEnv TERM=bot username@ssh.chat ```