config: add Seat.get_keyboard_output and Connector.workspaces
This commit is contained in:
parent
b83bf0657b
commit
00735e4621
7 changed files with 127 additions and 30 deletions
|
|
@ -556,6 +556,15 @@ pub enum ClientMessage<'a> {
|
|||
SetShowFloatPinIcon {
|
||||
show: bool,
|
||||
},
|
||||
GetSeatKeyboardWorkspace {
|
||||
seat: Seat,
|
||||
},
|
||||
GetConnectorActiveWorkspace {
|
||||
connector: Connector,
|
||||
},
|
||||
GetConnectorWorkspaces {
|
||||
connector: Connector,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
|
|
@ -710,6 +719,15 @@ pub enum Response {
|
|||
GetFloatPinned {
|
||||
pinned: bool,
|
||||
},
|
||||
GetSeatKeyboardWorkspace {
|
||||
workspace: Workspace,
|
||||
},
|
||||
GetConnectorActiveWorkspace {
|
||||
workspace: Workspace,
|
||||
},
|
||||
GetConnectorWorkspaces {
|
||||
workspaces: Vec<Workspace>,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue