https://github.com/teslauncher/teslauncher
A simple Minecraft launcher
https://github.com/teslauncher/teslauncher
java java-swing launcher minecraft minecraft-launcher swing
Last synced: 27 days ago
JSON representation
A simple Minecraft launcher
- Host: GitHub
- URL: https://github.com/teslauncher/teslauncher
- Owner: TESLauncher
- License: gpl-3.0
- Created: 2023-10-05T16:49:01.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2026-04-08T16:46:00.000Z (about 1 month ago)
- Last Synced: 2026-04-08T18:38:41.568Z (about 1 month ago)
- Topics: java, java-swing, launcher, minecraft, minecraft-launcher, swing
- Language: Java
- Homepage:
- Size: 1.05 MB
- Stars: 16
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TESLauncher
> [!WARNING]
> This project is unfinished. Do not have any expectations.
Yet another launcher for Minecraft

### Quick start:
You will need at least JDK 8 to build and run this project.
```shell
$ git clone https://github.com/TESLauncher/TESLauncher
$ cd TESLauncher
$ ./gradlew build
```
If "BUILD SUCCESS" is displayed, use the following command to run the launcher:
```shell
$ java -jar dist/TESLauncher-0.13.4.jar
```
### Warning
Launcher will create its folders in the directory where `java` command was executed. That means that if you run
```shell
$ java -jar dist/TESLauncher-0.13.4.jar
```
launcher will run in project's root directory. If you want to run the launcher in any other place, specify a path to the working directory using `--workDir` parameter.
Example:
```shell
$ java -jar dist/TESLauncher-0.13.4.jar --workDir C:\Users\User\Documents\TESLauncher
```
Alternatively, you can use `--useJarLocation` argument, which will make the launcher use the folder for its files where the jar file is located. In that case the `--workDir` argument is ignored.
Example:
```shell
$ java -jar dist/TESLauncher-0.13.4.jar --useJarLocation
```
This way the launcher files will be created in `dist` folder.