fix(wayland/output): give it a name/description

This commit is contained in:
Nova
2025-09-14 01:12:00 -07:00
parent f40c6dcbd4
commit 795f111ebc

View File

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