diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-05-10 22:48:11 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-05-10 22:49:55 +0300 |
| commit | a2efaf2816f14ea437d88bc6b9253b1e347c4cee (patch) | |
| tree | 840c4776a4a0a4e55e3b4c8057e4aa59c75e956b /niri-config/src | |
| parent | 58166914607025ae9fb20d868138238bebd4c6bc (diff) | |
| download | niri-a2efaf2816f14ea437d88bc6b9253b1e347c4cee.tar.gz niri-a2efaf2816f14ea437d88bc6b9253b1e347c4cee.tar.bz2 niri-a2efaf2816f14ea437d88bc6b9253b1e347c4cee.zip | |
Add is-urgent window rule matcher
Diffstat (limited to 'niri-config/src')
| -rw-r--r-- | niri-config/src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/niri-config/src/lib.rs b/niri-config/src/lib.rs index 10ed31b5..b7214018 100644 --- a/niri-config/src/lib.rs +++ b/niri-config/src/lib.rs @@ -1457,6 +1457,8 @@ pub struct Match { #[knuffel(property)] pub is_window_cast_target: Option<bool>, #[knuffel(property)] + pub is_urgent: Option<bool>, + #[knuffel(property)] pub at_startup: Option<bool>, } @@ -4804,6 +4806,7 @@ mod tests { is_active_in_column: None, is_floating: None, is_window_cast_target: None, + is_urgent: None, at_startup: None, }, ], @@ -4822,6 +4825,7 @@ mod tests { is_active_in_column: None, is_floating: None, is_window_cast_target: None, + is_urgent: None, at_startup: None, }, Match { @@ -4836,6 +4840,7 @@ mod tests { is_active_in_column: None, is_floating: None, is_window_cast_target: None, + is_urgent: None, at_startup: None, }, ], |
