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:
parent
8ccc959dc9
commit
7b13108627
1 changed files with 3 additions and 3 deletions
|
|
@ -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'],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue