From 7b1310862776b5df15be8f77eef3792d992f1ef5 Mon Sep 17 00:00:00 2001 From: Samuel James <143277412+SamuelSJames@users.noreply.github.com> Date: Mon, 22 Jun 2026 16:04:56 -0400 Subject: [PATCH] Default remote desktop resolution to 1080p (#48) Bump the guacd connectionDefaultSettings for rdp/vnc/telnet from 1024x768 to 1920x1080 so new remote desktop sessions open at 1080p by default. dpi stays 96. Co-authored-by: Samuel James Co-authored-by: Kiro --- backend/src/routes/guacamole.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/routes/guacamole.ts b/backend/src/routes/guacamole.ts index a6c4d08..d1a9798 100644 --- a/backend/src/routes/guacamole.ts +++ b/backend/src/routes/guacamole.ts @@ -24,9 +24,9 @@ const CLIENT_OPTIONS = { crypt: { cypher: CRYPT_CYPHER, key: CRYPT_KEY }, maxInactivityTime: 0, connectionDefaultSettings: { - rdp: { port: '3389', width: 1024, height: 768, dpi: 96, image: ['image/png', 'image/jpeg'] }, - vnc: { port: '5900', width: 1024, height: 768, dpi: 96, image: ['image/png', 'image/jpeg'] }, - telnet: { port: '23', width: 1024, height: 768, dpi: 96, image: ['image/png', 'image/jpeg'] }, + rdp: { port: '3389', width: 1920, height: 1080, dpi: 96, image: ['image/png', 'image/jpeg'] }, + vnc: { port: '5900', width: 1920, height: 1080, dpi: 96, image: ['image/png', 'image/jpeg'] }, + telnet: { port: '23', width: 1920, height: 1080, dpi: 96, image: ['image/png', 'image/jpeg'] }, }, allowedUnencryptedConnectionSettings: { rdp: ['width', 'height', 'dpi'],