cpu
Current CPU usage.
Live Data Sources display information. They do not perform actions. A WebShell can use LDS values to show system status, app status, media state, weather, service health, or anything else the user configures.
WebTrigger includes built-in values that are ready for dashboards and control panels.
cpuCurrent CPU usage.
ramCurrent memory usage.
volumeCurrent system volume.
muteCurrent mute state.
batteryBattery level when available.
battery_chargingCharging state when available.
Poll a local or remote API, then display a value from the response.
Run a trusted PowerShell command on the PC and display the result.
Use Python for richer local calculations, parsing, or integrations.
Custom sources update on an interval chosen in the Windows app.
/api/live-dataRead the current live data snapshot.
/api/state/streamSubscribe to live updates with Server-Sent Events.
const values = await fetch('/api/live-data').then(res => res.json());
document.querySelector('[data-lds="cpu"]').textContent = `${values.cpu}%`;
const stream = new EventSource('/api/state/stream');
stream.onmessage = event => {
const { key, value } = JSON.parse(event.data);
const target = document.querySelector(`[data-lds="${key}"]`);
if (target) target.textContent = value;
};
Show usage, color, and a progress bar for quick system checks.
Display a custom HTTP LDS with temperature and conditions.
Show volume, mute state, or current playback information from custom sources.
Poll a local service or device and show whether it is online.