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.
8 lines
343 B
Plaintext
8 lines
343 B
Plaintext
Set WshShell = CreateObject("WScript.Shell")
|
|
Set FSO = CreateObject("Scripting.FileSystemObject")
|
|
' Get parent folder of scripts folder (server root)
|
|
WshShell.CurrentDirectory = FSO.GetParentFolderName(FSO.GetParentFolderName(WScript.ScriptFullName))
|
|
WshShell.Run "python -m wled_controller", 0, False
|
|
Set FSO = Nothing
|
|
Set WshShell = Nothing
|