Skip to content

Instantly share code, notes, and snippets.

@Gjum
Gjum / minecraft-fast-start.sh
Created February 1, 2015 21:44
Start Minecraft without opening the launcher every time
#!/bin/bash
# Start Minecraft without opening the launcher every time
# written by Gjum https://github.com/Gjum
# location to store the startup command:
faststart="$HOME/.minecraft/.faststart"
if [ -f "$faststart" ];then
exec "$faststart"
else