config: add app-id window criteria
This commit is contained in:
parent
6ef7655dbd
commit
da64166e82
13 changed files with 102 additions and 24 deletions
|
|
@ -1787,6 +1787,14 @@
|
|||
"title-regex": {
|
||||
"type": "string",
|
||||
"description": "Matches the title of the window with a regular expression."
|
||||
},
|
||||
"app-id": {
|
||||
"type": "string",
|
||||
"description": "Matches the app-id of the window verbatim."
|
||||
},
|
||||
"app-id-regex": {
|
||||
"type": "string",
|
||||
"description": "Matches the app-id of the window with a regular expression."
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
|
|
|||
|
|
@ -4022,6 +4022,18 @@ The table has the following fields:
|
|||
|
||||
The value of this field should be a string.
|
||||
|
||||
- `app-id` (optional):
|
||||
|
||||
Matches the app-id of the window verbatim.
|
||||
|
||||
The value of this field should be a string.
|
||||
|
||||
- `app-id-regex` (optional):
|
||||
|
||||
Matches the app-id of the window with a regular expression.
|
||||
|
||||
The value of this field should be a string.
|
||||
|
||||
|
||||
<a name="types-WindowMatchExactly"></a>
|
||||
### `WindowMatchExactly`
|
||||
|
|
|
|||
|
|
@ -3475,6 +3475,14 @@ WindowMatch:
|
|||
kind: string
|
||||
required: false
|
||||
description: Matches the title of the window with a regular expression.
|
||||
app-id:
|
||||
kind: string
|
||||
required: false
|
||||
description: Matches the app-id of the window verbatim.
|
||||
app-id-regex:
|
||||
kind: string
|
||||
required: false
|
||||
description: Matches the app-id of the window with a regular expression.
|
||||
|
||||
|
||||
WindowMatchExactly:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue