From 00f79452b29ec8b8e50308bb0e8eae13489f834a Mon Sep 17 00:00:00 2001 From: Redned Date: Fri, 15 Nov 2019 20:10:10 -0600 Subject: [PATCH] Fix RAM amount for mac --- Creating-a-Startup-Script.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Creating-a-Startup-Script.md b/Creating-a-Startup-Script.md index c6fff31..a43c1ce 100644 --- a/Creating-a-Startup-Script.md +++ b/Creating-a-Startup-Script.md @@ -13,7 +13,7 @@ java -Xms512M -jar Geyser.jar ### macOS * 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 -Xms5124M -jar Geyser.jar +#!/bin/bash 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.