Add startOnUserLogin & fullscreen launchMode to schema (#7300)

Fixes #7294

Co-authored-by: Mike Griese <migrie@microsoft.com>
This commit is contained in:
Jorge Cabot 2020-08-17 20:24:00 -04:00 committed by GitHub
parent baefa46238
commit 8943f68d4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -556,10 +556,16 @@
"minimum": 1,
"type": "integer"
},
"startOnUserLogin": {
"default": false,
"description": "When set to true, this enables the launch of Windows Terminal at startup. Setting this to false will disable the startup task entry. If the Windows Terminal startup task entry is disabled either by org policy or by user action this setting will have no effect.",
"type": "boolean"
},
"launchMode": {
"default": "default",
"description": "Defines whether the Terminal will launch as maximized or not.",
"description": "Defines whether the terminal will launch as maximized, full screen, or in a window.",
"enum": [
"fullscreen",
"maximized",
"default"
],