Actions
Actions do things: launch applications, open websites, run scripts, send hotkeys, make HTTP requests, and trigger system controls.
Learn More About ActionsWebTrigger starts with the Windows app. Create the actions and live values you want on your PC, open Quick Connect, then scan in from a phone, tablet, laptop, or browser on the same network.
When you are ready to customize the interface, use a WebShell: a browser-based control layout that decides how your actions, dashboards, and live data appear.
Think of WebTrigger as the local bridge between your PC and the screens you already own.
Actions do things: launch applications, open websites, run scripts, send hotkeys, make HTTP requests, and trigger system controls.
Learn More About ActionsLDS displays information like CPU, RAM, volume, battery, weather, OBS status, Plex status, or custom HTTP data.
Learn More About Live Data SourcesLaunch Folders discover items automatically from configured folders, such as games, applications, utilities, or tools.
Learn More About Launch FoldersWebShells are browser-based interfaces built with HTML, CSS, and JavaScript. They decide how controls and data appear.
Learn More About WebShell DevelopmentGET /api/theme-context/export is the easiest way for a WebShell to discover actions, Live Data Sources, launch folders, and available APIs.
const context = await fetch('/api/theme-context/export').then(res => res.json());
console.log(context.actions);
console.log(context.liveDataSources);
console.log(context.launchFolders);
Start here when building a new shell, especially if you are using an AI coding assistant to generate the first version.