1
0
Fork 0
forked from wry/wry

virtual-output: add support for virtual outputs

This commit is contained in:
Julian Orth 2026-03-17 18:42:49 +01:00
parent c25d17514d
commit 530e66ef78
27 changed files with 1480 additions and 9 deletions

View file

@ -183,6 +183,12 @@ pub enum Action {
name: String,
latch: bool,
},
CreateVirtualOutput {
name: String,
},
RemoveVirtualOutput {
name: String,
},
}
#[derive(Debug, Clone, Default)]