From 57e044342e5c52f9ee7c1e6e7fb70884da04b315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Justus=20Sch=C3=BCmmer?= Date: Mon, 13 Feb 2023 00:24:33 +0100 Subject: [PATCH] Update river-status-unstable to the newest version Add wildcard case to event handler --- protocol/river-status-unstable-v1.xml | 19 +++++++++++++++++-- src/main.rs | 1 + 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/protocol/river-status-unstable-v1.xml b/protocol/river-status-unstable-v1.xml index 6a74256..e9629dd 100644 --- a/protocol/river-status-unstable-v1.xml +++ b/protocol/river-status-unstable-v1.xml @@ -16,7 +16,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - + A global factory for objects that receive status information specific to river. It could be used to implement, for example, a status bar. @@ -47,7 +47,7 @@ - + This interface allows clients to receive information about the current windowing state of an output. @@ -83,6 +83,21 @@ + + + + Sent once on binding the interface should a layout name exist and again + whenever the name changes. + + + + + + + Sent when the current layout name has been removed without a new one + being set, for example when the active layout generator disconnects. + + diff --git a/src/main.rs b/src/main.rs index e06d723..2589151 100644 --- a/src/main.rs +++ b/src/main.rs @@ -200,6 +200,7 @@ fn main() { } } } + _ => {} } } });