diff --git a/README.md b/README.md index 4d1c771..c9790d1 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Add the script as a source file in your shell prompt, exporting any config varia ``` # Tab Sorcery -export SORC_GEOM_RDP='1600x900' #(Optional) Sets the window resolution for RDP connections +export SORC_GEOM_RDP="1600x900" #(Optional) Sets the window resolution for RDP connections . $HOME/git/tab-sorcery/tab-sorcery.sh example.com 127.0.0.1 bob.user ``` @@ -28,7 +28,7 @@ Options can be configured as exported variables, set in your shell RC files befo This option sets the resolution of your Windows RDP connections. If left unset or an invalid value is detected, the default is **1600x900**. Example: ``` -export SORC_GEOM_RDP='1280x720' +export SORC_GEOM_RDP="1280x720" ``` ##### Windows Password File (INSECURE) @@ -48,7 +48,7 @@ export SORC_PASS_FILE="$HOME/.some_file" ### Full Example of How to Call the Tab Sorcery Script Here is a full example utilizing all available options. Please note that only the last line, beginning with a dot, is absolutely required. ``` -export SORC_GEOM_RDP='1280x720' +export SORC_GEOM_RDP="1280x720" export SORC_PASS_FILE="$HOME/.some_file" . $HOME/git/tab-sorcery/tab-sorcery.sh example.com 127.0.0.1 bob.user ```