config: allow configuring the simple IM
This commit is contained in:
parent
58b9830aaa
commit
2f22a61710
15 changed files with 367 additions and 7 deletions
|
|
@ -788,6 +788,16 @@ pub enum ClientMessage<'a> {
|
|||
workspace: Workspace,
|
||||
connector: Connector,
|
||||
},
|
||||
SeatSetSimpleImEnabled {
|
||||
seat: Seat,
|
||||
enabled: bool,
|
||||
},
|
||||
SeatGetSimpleImEnabled {
|
||||
seat: Seat,
|
||||
},
|
||||
SeatReloadSimpleIm {
|
||||
seat: Seat,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
|
|
@ -1020,6 +1030,9 @@ pub enum Response {
|
|||
GetShowBar {
|
||||
show: bool,
|
||||
},
|
||||
SeatGetSimpleImEnabled {
|
||||
enabled: bool,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue