mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-11-10 00:36:17 +01:00
Updated Creating a Startup Script (markdown)
parent
3d247dfcf8
commit
47fbe8b83b
1 changed files with 4 additions and 1 deletions
|
@ -24,7 +24,10 @@ java -Xms512M -jar Geyser.jar
|
||||||
### Linux
|
### Linux
|
||||||
* Create a file called *run.sh*, and open it with a text editor. Type the text below into your `run.sh` file:
|
* Create a file called *run.sh*, and open it with a text editor. Type the text below into your `run.sh` file:
|
||||||
```sh
|
```sh
|
||||||
#!/bin/sh BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" java -jar Geyser.jar
|
#!/bin/sh
|
||||||
|
BINDIR=$(dirname"$(readlink -fn "$0")")
|
||||||
|
cd "$BINDIR"
|
||||||
|
java -jar Geyser.jar
|
||||||
```
|
```
|
||||||
* In your default terminal application, make the file executable by running `chmod +x ~(dir)/run.sh` where `dir` is the name of the folder Geyser is in, or by changing the file permissions;
|
* In your default terminal application, make the file executable by running `chmod +x ~(dir)/run.sh` where `dir` is the name of the folder Geyser is in, or by changing the file permissions;
|
||||||
* Open your default terminal application, and type `chmod +x ~/(dir)/run.sh` to run Geyser. Geyser will generate all the needed files.
|
* Open your default terminal application, and type `chmod +x ~/(dir)/run.sh` to run Geyser. Geyser will generate all the needed files.
|
Loading…
Reference in a new issue