mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-27 14:58:55 +01:00
19 lines
457 B
Batchfile
19 lines
457 B
Batchfile
@echo off
|
|
|
|
set "ATCS_DIR=%~dp0"
|
|
set "MAX_MEM=512M"
|
|
set "JAVA=javaw.exe"
|
|
set "JAVA_OPTS=-DFONT_SCALE=1.0 -Dswing.aatext=true"
|
|
set "ENV_FILE=%ATCS_DIR%ATCS.env.bat"
|
|
|
|
if exist "%ENV_FILE%" (
|
|
call "%ENV_FILE%"
|
|
) else (
|
|
echo REM set "MAX_MEM=%MAX_MEM%">"%ENV_FILE%"
|
|
echo REM set "JAVA=%JAVA%">>"%ENV_FILE%"
|
|
echo REM set "JAVA_OPTS=%JAVA_OPTS%">>"%ENV_FILE%"
|
|
echo.>>"%ENV_FILE%"
|
|
)
|
|
|
|
start "" "%JAVA%" %JAVA_OPTS% -Xmx%MAX_MEM% -jar "%ATCS_DIR%\ATCS.jar"
|