diff options
author | Johan Sköld <git@johan.skold.cc> | 2023-09-01 21:28:09 -0700 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-09-07 10:42:54 +0900 |
commit | d952ce403e63a1d91f07b72d971500d583609223 (patch) | |
tree | 21782cf134499ebc3d4fffd41c50a582adb55990 /include | |
parent | 3dd2f4a67fb2ac45f336f075779cc3bccec2aac3 (diff) |
i3 compat: Adding support for the `all` criteria
Matches all views. i3 PR: https://github.com/i3/i3/pull/4460
Fixes #7110
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/criteria.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sway/criteria.h b/include/sway/criteria.h index 59f57f94..8da345ea 100644 --- a/include/sway/criteria.h +++ b/include/sway/criteria.h @@ -43,6 +43,7 @@ struct criteria { struct pattern *window_role; enum atom_name window_type; #endif + bool all; bool floating; bool tiling; char urgent; // 'l' for latest or 'o' for oldest |