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 <ssamjame@amazon.com>
Co-authored-by: Kiro <noreply@kiro.dev>
This commit is contained in:
Samuel James 2026-06-22 16:04:56 -04:00 committed by GitHub
parent 8ccc959dc9
commit 7b13108627
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,9 +24,9 @@ const CLIENT_OPTIONS = {
crypt: { cypher: CRYPT_CYPHER, key: CRYPT_KEY }, crypt: { cypher: CRYPT_CYPHER, key: CRYPT_KEY },
maxInactivityTime: 0, maxInactivityTime: 0,
connectionDefaultSettings: { connectionDefaultSettings: {
rdp: { port: '3389', 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: 1024, height: 768, 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: 1024, height: 768, dpi: 96, image: ['image/png', 'image/jpeg'] }, telnet: { port: '23', width: 1920, height: 1080, dpi: 96, image: ['image/png', 'image/jpeg'] },
}, },
allowedUnencryptedConnectionSettings: { allowedUnencryptedConnectionSettings: {
rdp: ['width', 'height', 'dpi'], rdp: ['width', 'height', 'dpi'],