Files
wled-screen-controller-mixed/server/scripts/start-server.bat
alexei.dolgolyov 6a881f8fdd feat: add system tray and __main__ entry point
Add pystray-based system tray icon with Open UI / Restart / Quit
actions. Add __main__.py for `python -m wled_controller` support.
Update start-hidden.vbs with embedded Python fallback for both
installed and dev environments.
2026-03-24 13:58:19 +03:00

16 lines
349 B
Batchfile

@echo off
REM WLED Screen Controller Startup Script
REM This script starts the WLED screen controller server
echo Starting WLED Screen Controller...
echo.
REM Change to the server directory (parent of scripts folder)
cd /d "%~dp0\.."
REM Start the server
python -m wled_controller
REM If the server exits, pause to show any error messages
pause