mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
17 lines
269 B
Batchfile
17 lines
269 B
Batchfile
REM @echo off
|
|
set VN_DIR=%1
|
|
set VN_EXE=%~2
|
|
set VN_ARCH=%3
|
|
|
|
echo "Setting UTF-8..."
|
|
REM chcp 65001 > nul
|
|
|
|
echo "Launching VN..."
|
|
cd /d %VN_DIR%
|
|
start %VN_EXE%
|
|
|
|
echo Launching Textractor...
|
|
cd /d "C:\users\steamuser\Desktop\Textractor\%VN_ARCH%"
|
|
Textractor.exe
|
|
|
|
REM exit
|