From 795f111ebc3c0eb6bbe9e4652e67391c28e7a0d5 Mon Sep 17 00:00:00 2001 From: Nova Date: Sun, 14 Sep 2025 01:12:00 -0700 Subject: [PATCH] fix(wayland/output): give it a name/description --- src/wayland/core/output.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/wayland/core/output.rs b/src/wayland/core/output.rs index acd8e52..8d77e1f 100644 --- a/src/wayland/core/output.rs +++ b/src/wayland/core/output.rs @@ -26,6 +26,16 @@ impl Output { ) .await?; + if self.version >= 4 { + self.name(client, self.id, "Stardust Virtual Display".to_string()) + .await?; + self.description( + client, + self.id, + "I needed this to account for dumb clients".to_string(), + ) + .await?; + } self.mode(client, self.id, Mode::Current, 2048, 2048, i32::MAX) .await?;