Bell sound
{BELL_SOUNDS.map((b) => {
const active = bellSound === b.id;
return (
{ onBellSoundChange(b.id); playBell(b.id); }}
style={{
display: "flex", alignItems: "center", justifyContent: "space-between",
gap: 8, padding: "6px 9px", borderRadius: 6, fontSize: 12, cursor: "pointer",
background: active ? "var(--accent2)" : "rgba(255,255,255,0.04)",
color: active ? "white" : "var(--text)",
border: "1px solid var(--card-border)", textAlign: "left",
}}
>
{b.name}
{active ? "✓ ▶" : "▶"}
);
})}
Click to preview & select — saved automatically.
Office
onShowManagerChange(!showManager)}
style={{
display: "flex", alignItems: "center", justifyContent: "space-between",
gap: 8, padding: "6px 9px", borderRadius: 6, fontSize: 12, cursor: "pointer",
background: showManager ? "var(--accent2)" : "rgba(255,255,255,0.04)",
color: showManager ? "white" : "var(--text)",
border: "1px solid var(--card-border)", width: "100%", textAlign: "left",
}}
>
👩💼 Team manager
{showManager ? "on" : "off"}
{showManager && (
Patrol interval (sec)
Idle grace (sec)
Patrol: how often she walks the floor when a desk looks unfinished.
Grace: skip audit if activity was this recent.
)}
Activity feed
onVerboseChange(!verbose)}
style={{
display: "flex", alignItems: "center", justifyContent: "space-between",
gap: 8, padding: "6px 9px", borderRadius: 6, fontSize: 12, cursor: "pointer",
background: verbose ? "var(--accent2)" : "rgba(255,255,255,0.04)",
color: verbose ? "white" : "var(--text)",
border: "1px solid var(--card-border)", width: "100%", textAlign: "left",
}}
>
🔬 Verbose streaming
{verbose ? "high" : "low"}
{verbose
? "Live tokens, reasoning and tool calls stream into the desk feed; Debug console tab shown."
: "Desks show a compact status line while the agent works; Debug console tab hidden."}
Docker
onDockerPersistChange(!dockerPersist)}
style={{
display: "flex", alignItems: "center", justifyContent: "space-between",
gap: 8, padding: "6px 9px", borderRadius: 6, fontSize: 12, cursor: "pointer",
background: dockerPersist ? "var(--accent2)" : "rgba(255,255,255,0.04)",
color: dockerPersist ? "white" : "var(--text)",
border: "1px solid var(--card-border)", width: "100%", textAlign: "left",
}}
>
🐳 Keep sandbox containers
{dockerPersist ? "on" : "off"}
{dockerPersist
? "Containers stay warm across desk deletion & restart — remove them with Reset."
: "Containers are removed when a desk is deleted and when the server stops."}
Scene
{SCENES.map((s) => {
const active = scene === s.id;
return (
onSceneChange(s.id)}
style={{
flex: "1 1 45%", padding: "6px 9px", borderRadius: 6, fontSize: 12, cursor: "pointer",
background: active ? "var(--accent2)" : "rgba(255,255,255,0.04)",
color: active ? "white" : "var(--text)",
border: "1px solid var(--card-border)", textAlign: "left",
}}
>
{active ? "✓ " : ""}{s.name}
);
})}
Code theme
{CODE_THEMES.map((t) => {
const active = codeTheme === t.id;
return (
onCodeThemeChange(t.id as CodeThemeId)}
style={{
flex: "1 1 45%", padding: "6px 9px", borderRadius: 6, fontSize: 12, cursor: "pointer",
background: active ? "var(--accent2)" : "rgba(255,255,255,0.04)",
color: active ? "white" : "var(--text)",
border: "1px solid var(--card-border)", textAlign: "left",
}}
>
{active ? "✓ " : ""}{t.name}
);
})}