This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
NewerOlder