Files

13 lines
277 B
Batchfile
Raw Permalink Normal View History

@echo off
REM Terminal Launcher - Double-click to open
REM Launches TerminalLauncher.py with Python
cd /d "%~dp0"
python TerminalLauncher.py
if errorlevel 1 (
echo Failed to launch Terminal Launcher
echo Make sure Python is installed and in your PATH
pause
)
exit