1
0
Fork 0
forked from wry/wry

config: add fullscreen window criteria

This commit is contained in:
Julian Orth 2025-05-01 18:49:39 +02:00
parent 91c948b219
commit e36ccd560c
14 changed files with 51 additions and 3 deletions

View file

@ -1811,6 +1811,10 @@
"focused": {
"type": "boolean",
"description": "Matches if the window has/hasn't the keyboard focus."
},
"fullscreen": {
"type": "boolean",
"description": "Matches if the window is/isn't fullscreen."
}
},
"required": []

View file

@ -4058,6 +4058,12 @@ The table has the following fields:
The value of this field should be a boolean.
- `fullscreen` (optional):
Matches if the window is/isn't fullscreen.
The value of this field should be a boolean.
<a name="types-WindowMatchExactly"></a>
### `WindowMatchExactly`

View file

@ -3499,6 +3499,10 @@ WindowMatch:
kind: boolean
required: false
description: Matches if the window has/hasn't the keyboard focus.
fullscreen:
kind: boolean
required: false
description: Matches if the window is/isn't fullscreen.
WindowMatchExactly: