1
0
Fork 0
forked from wry/wry

tree: allow showing floating windows above fullscreen

This commit is contained in:
Julian Orth 2025-04-22 17:46:25 +02:00
parent f3179b7794
commit 0c02cb5033
17 changed files with 118 additions and 6 deletions

View file

@ -542,6 +542,10 @@ pub enum ClientMessage<'a> {
connector: Connector,
brightness: Option<f64>,
},
SetFloatAboveFullscreen {
above: bool,
},
GetFloatAboveFullscreen,
}
#[derive(Serialize, Deserialize, Debug)]
@ -690,6 +694,9 @@ pub enum Response {
GetSocketPath {
path: String,
},
GetFloatAboveFullscreen {
above: bool,
},
}
#[derive(Serialize, Deserialize, Debug)]