diff --git a/doc/specs/Winget Manifest Keyboard Shortcuts schema.md b/doc/specs/Winget Manifest Keyboard Shortcuts schema.md index a0e3ad351f..66e93e83e3 100644 --- a/doc/specs/Winget Manifest Keyboard Shortcuts schema.md +++ b/doc/specs/Winget Manifest Keyboard Shortcuts schema.md @@ -232,7 +232,8 @@ The `index.yaml` file is a file that contains all the information about the diff ```yaml DefaultShellName: # The package identifier of the default shell used in Windows Index: # List of all manifest files - - Filter: # The filter of window processes to which the shortcuts apply to + - WindowFilter: # The filter of window processes to which the shortcuts apply to + BackgroundProcess: # Optionally allows applying WindowFilter to background processes Apps: # List of all manifest files for the filter ``` @@ -248,12 +249,21 @@ Index: # List of all manifest files
- Filter - The filter of window processes to which the shortcuts apply to + WindowFilter - The filter of window processes to which the shortcuts apply to See the `WindowFilter` field in the manifest file for more information.
+
+ BackgroundProcess - Optionally allows applying WindowFilter to background processes + + **Optional field** + + See the `BackgroundProcess` field in the manifest file for more information. + +
+
Apps - List of all the package identifiers applying for the filter
@@ -264,6 +274,7 @@ Index: # List of all manifest files DefaultShellName: "+WindowsNT.Shell" Index: - Filter: "*" + BackgroundProcess: True Apps: ["+WindowsNT.Shell", "Microsoft.PowerToys"] - Filter: "explorer.exe" Apps: ["+WindowsNT.WindowsExplorer"]