1
0
Fork 0
forked from wry/wry

config: allow disabling window titles

This commit is contained in:
Sean Day 2025-10-16 17:48:47 +02:00 committed by Julian Orth
parent 796269d31e
commit daafb98336
19 changed files with 222 additions and 74 deletions

View file

@ -801,6 +801,10 @@ pub enum ClientMessage<'a> {
SeatEnableUnicodeInput {
seat: Seat,
},
SetShowTitles {
show: bool,
},
GetShowTitles,
}
#[derive(Serialize, Deserialize, Debug)]
@ -1036,6 +1040,9 @@ pub enum Response {
SeatGetSimpleImEnabled {
enabled: bool,
},
GetShowTitles {
show: bool,
},
}
#[derive(Serialize, Deserialize, Debug)]