Update readme.md + Updated install instructions for SillyTavern Launcher

bca99a4d7fb5fa0991625ad34f5cd405a4855637

deffcolony <61471128+deffcolony@users.noreply.github.com>

Signed
1 files changed, +40 -16Showing whitespace changes
.github/readme.md+40 -16
@@ -144,12 +144,14 @@ A full list of included extensions and tutorials on how to use them can be found
144144 8. The server will then start, and SillyTavern will pop up in your browser.
145145
146146## Installing via SillyTavern Launcher
147- 1. Install [Git for Windows](https://gitforwindows.org/)
147+1. On your keyboard: press **`WINDOWS + R`** to open Run dialog box. Then, run the following command to install git:
148- 2. Open Windows Explorer (`Win+E`) and make or choose a folder where you wanna install the launcher to
148+```shell
149- 3. Open a Command Prompt inside that folder by clicking in the 'Address Bar' at the top, typing `cmd`, and pressing Enter.
149+cmd /c winget install -e --id Git.Git
150- 4. When you see a black box, insert the following command: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git`
150+```
151- 5. Double-click on `installer.bat` and choose what you wanna install
151+2. On your keyboard: press **`WINDOWS + E`** to open File Explorer, then navigate to the folder where you want to install the launcher. Once in the desired folder, type `cmd` into the address bar and press enter. Then, run the following command:
152- 6. After installation double-click on `launcher.bat`
152+```shell
153+git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher && start installer.bat
154+```
153155
154156## Installing via GitHub Desktop
155157(This allows git usage **only** in GitHub Desktop, if you want to use `git` on the command line too, you also need to install [Git for Windows](https://gitforwindows.org/))
@@ -183,18 +185,40 @@ For MacOS / Linux all of these will be done in a Terminal.
183185
184186### For Linux users
1851871. Open your favorite terminal and install git
186-2. Download Sillytavern Launcher with: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git`
188+2. Git clone the Sillytavern-Launcher with:
187-3. Navigate to the SillyTavern-Launcher with: `cd SillyTavern-Launcher`
189+```shell
188-4. Start the install launcher with: `chmod +x install.sh && ./install.sh` and choose what you wanna install
190+git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher
189-5. After installation start the launcher with: `chmod +x launcher.sh && ./launcher.sh`
191+```
192+3. Start the installer.sh with:
193+```shell
194+chmod +x install.sh && ./install.sh
195+```
196+4. After installation start the launcher.sh with:
197+```shell
198+chmod +x launcher.sh && ./launcher.sh
199+```
190200
191201### For Mac users
192-1. Open a terminal and install brew with: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
202+1. Open a terminal and install brew with:
193-2. Then install git with: `brew install git`
203+```shell
194-3. Download Sillytavern Launcher with: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git`
204+/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
195-4. Navigate to the SillyTavern-Launcher with: `cd SillyTavern-Launcher`
205+```
196-5. Start the install launcher with: `chmod +x install.sh && ./install.sh` and choose what you wanna install
206+2. Install git with:
197-6. After installation start the launcher with: `chmod +x launcher.sh && ./launcher.sh`
207+```shell
208+brew install git
209+```
210+3. Git clone the Sillytavern-Launcher with:
211+```shell
212+git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher
213+```
214+4. Start the installer.sh with:
215+```shell
216+chmod +x install.sh && ./install.sh
217+```
218+5. After installation start the launcher.sh with:
219+```shell
220+chmod +x launcher.sh && ./launcher.sh
221+```
198222
199223## 🐋 Installing via Docker
200224