Games
Point WebTrigger at a games folder and build a couch-friendly launcher.
A Launch Folder is a folder monitored by WebTrigger. Items are discovered automatically and exposed to WebShells so users can build launchers without manually creating every button.
Point WebTrigger at a games folder and build a couch-friendly launcher.
Expose common desktop apps to a tablet, touch panel, or spare laptop.
Create quick launch pages for maintenance tools and helper apps.
Group media apps, folders, or local control tools in one WebShell view.
/api/launch-foldersList configured launch folders.
/api/launch-folders/{id}/itemsList discovered items inside a launch folder.
/api/launch-items/{id}/launchLaunch one discovered item.
const folders = await fetch('/api/launch-folders').then(res => res.json());
const items = await fetch(`/api/launch-folders/${folders[0].id}/items`).then(res => res.json());
await fetch(`/api/launch-items/${items[0].id}/launch`, {
method: 'POST'
});