@intuned/runtime-dev 1.1.6-vnc.0 → 1.1.6-vnc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -268,7 +268,7 @@ async function startVncServer() {
|
|
|
268
268
|
await fs.writeFile("/tmp/vnc_startup.sh", vncStartupScript, {
|
|
269
269
|
mode: 0o755
|
|
270
270
|
});
|
|
271
|
-
const vncServerProcess = (0, _child_process.spawn)("vncserver", [":99", "-localhost", "yes", "-rfbauth", "
|
|
271
|
+
const vncServerProcess = (0, _child_process.spawn)("vncserver", [":99", "-localhost", "yes", "-rfbauth", "/root/vnc/passwd", "-rfbport", "5900", "-geometry", "1280x720"]);
|
|
272
272
|
processes.push(vncServerProcess);
|
|
273
273
|
while (true) {
|
|
274
274
|
if (await fs.exists("/tmp/.X11-unix/X99")) {
|