window-rules: add fixedPosition property

...to address regression introduced by 57075ce and enables panel/desktop
clients which rely on window rules to remain in the same position when
the usable-area changes (normally because an exclusive layer-shell
clients is started/finished).

Also disallows interactive move/resize, for example by alt +
mouse-press.

Fixes: #1235
This commit is contained in:
Johan Malm 2023-11-09 21:44:51 +00:00 committed by Consolatis
parent 9a8a2905ad
commit 368ede7460
7 changed files with 23 additions and 0 deletions

View file

@ -159,6 +159,8 @@ fill_window_rule(char *nodename, char *content)
set_property(content, &current_window_rule->skip_window_switcher);
} else if (!strcasecmp(nodename, "ignoreFocusRequest")) {
set_property(content, &current_window_rule->ignore_focus_request);
} else if (!strcasecmp(nodename, "fixedPosition")) {
set_property(content, &current_window_rule->fixed_position);
/* Actions */
} else if (!strcmp(nodename, "name.action")) {