13 lines
277 B
Batchfile
Executable File
13 lines
277 B
Batchfile
Executable File
@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
|