From d6dd3662511b232a18d8a4b5e227efb0f6198eac Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Thu, 4 Dec 2025 10:36:57 -0800 Subject: [PATCH] Add &show_dot=true to the noVNC view for the cua CLI --- libs/typescript/cua-cli/src/commands/sandbox.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/typescript/cua-cli/src/commands/sandbox.ts b/libs/typescript/cua-cli/src/commands/sandbox.ts index eeabcf58..9264fcc1 100644 --- a/libs/typescript/cua-cli/src/commands/sandbox.ts +++ b/libs/typescript/cua-cli/src/commands/sandbox.ts @@ -49,7 +49,7 @@ async function fetchSandboxDetails( // Compute VNC URL if requested if (options.showVncUrl) { const host = sandbox.host || `${sandbox.name}.sandbox.cua.ai`; - result.vnc_url = `https://${host}/vnc.html?autoconnect=true&password=${encodeURIComponent(sandbox.password)}`; + result.vnc_url = `https://${host}/vnc.html?autoconnect=true&password=${encodeURIComponent(sandbox.password)}&show_dot=true`; } // Probe computer-server if requested and sandbox is running @@ -381,7 +381,7 @@ const openHandler = async (argv: Record) => { sandbox.host && sandbox.host.length ? sandbox.host : `${sandbox.name}.sandbox.cua.ai`; - const url = `https://${host}/vnc.html?autoconnect=true&password=${encodeURIComponent(sandbox.password)}`; + const url = `https://${host}/vnc.html?autoconnect=true&password=${encodeURIComponent(sandbox.password)}&show_dot=true`; console.log(`Opening NoVNC: ${url}`); await openInBrowser(url); };