add new key to index file
Some checks failed
Spell checking / Spell checking (push) Has been cancelled
Spell checking / Report (Push) (push) Has been cancelled
Spell checking / Report (PR) (push) Has been cancelled
Spell checking / Update PR (push) Has been cancelled

This commit is contained in:
Aaron Junker-Wildi 2024-11-10 11:47:27 +00:00
parent dd763042a2
commit 1759a84f8c

View File

@ -232,7 +232,8 @@ The `index.yaml` file is a file that contains all the information about the diff
```yaml ```yaml
DefaultShellName: # The package identifier of the default shell used in Windows DefaultShellName: # The package identifier of the default shell used in Windows
Index: # List of all manifest files 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 Apps: # List of all manifest files for the filter
``` ```
@ -248,12 +249,21 @@ Index: # List of all manifest files
</details> </details>
<details> <details>
<summary><b>Filter</b> - The filter of window processes to which the shortcuts apply to</summary> <summary><b>WindowFilter</b> - The filter of window processes to which the shortcuts apply to</summary>
See the `WindowFilter` field in the manifest file for more information. See the `WindowFilter` field in the manifest file for more information.
</details> </details>
<details>
<summary><b>BackgroundProcess</b> - Optionally allows applying WindowFilter to background processes</summary>
**Optional field**
See the `BackgroundProcess` field in the manifest file for more information.
</details>
<details> <details>
<summary><b>Apps</b> - List of all the package identifiers applying for the filter</summary> <summary><b>Apps</b> - List of all the package identifiers applying for the filter</summary>
</details> </details>
@ -264,6 +274,7 @@ Index: # List of all manifest files
DefaultShellName: "+WindowsNT.Shell" DefaultShellName: "+WindowsNT.Shell"
Index: Index:
- Filter: "*" - Filter: "*"
BackgroundProcess: True
Apps: ["+WindowsNT.Shell", "Microsoft.PowerToys"] Apps: ["+WindowsNT.Shell", "Microsoft.PowerToys"]
- Filter: "explorer.exe" - Filter: "explorer.exe"
Apps: ["+WindowsNT.WindowsExplorer"] Apps: ["+WindowsNT.WindowsExplorer"]