mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
17 lines
304 B
Batchfile
Executable file
17 lines
304 B
Batchfile
Executable file
@echo on
|
|
set BNET_DIR=%1
|
|
set BNET_EXE=%~2
|
|
set GAME=%3
|
|
|
|
echo "Setting UTF-8..."
|
|
chcp 65001 > nul
|
|
|
|
echo "Launching Battle.net..."
|
|
cd /d %BNET_DIR%
|
|
start /b %BNET_EXE% --in-process-gpu
|
|
|
|
timeout /t 60 /nobreak > NUL
|
|
|
|
echo "Launching game within Battle.net..."
|
|
start /b %BNET_EXE% --exec="launch %GAME%"
|
|
exit
|