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?;