mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-11-13 02:06:20 +01:00
Updated Creating a Startup Script (markdown)
parent
ab1a11c7d1
commit
3d247dfcf8
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ java -Xms512M -jar Geyser.jar
|
|||
* Create a text file called **run.command**, and open it with a text editor such as TextEdit or TextMate. Type the text below into the **run.command** file:
|
||||
```sh
|
||||
#!/bin/bash
|
||||
cd "$( dirname "$0" )" java -Xms512M -jar Geyser.jar
|
||||
cd "$( dirname "$0" )"
|
||||
java -Xms512M -jar Geyser.jar
|
||||
```
|
||||
* Open Terminal, and type in `chmod a+x` **(Do NOT press return!)**, and drag your *run.command* file into the Terminal.
|
||||
* Press return on your keyboard, and Geyser will start up. Geyser will generate all the needed files.
|
||||
|
|
Loading…
Reference in a new issue