feat: implement scratchpad window toggling
This commit is contained in:
parent
5c2f631fdb
commit
d756c8a6a2
17 changed files with 515 additions and 3 deletions
|
|
@ -286,6 +286,14 @@ pub enum ClientMessage<'a> {
|
|||
seat: Seat,
|
||||
workspace: Workspace,
|
||||
},
|
||||
SeatSendToScratchpad {
|
||||
seat: Seat,
|
||||
name: &'a str,
|
||||
},
|
||||
SeatToggleScratchpad {
|
||||
seat: Seat,
|
||||
name: &'a str,
|
||||
},
|
||||
GetTimer {
|
||||
name: &'a str,
|
||||
},
|
||||
|
|
@ -687,6 +695,10 @@ pub enum ClientMessage<'a> {
|
|||
window: Window,
|
||||
workspace: Workspace,
|
||||
},
|
||||
WindowSendToScratchpad {
|
||||
window: Window,
|
||||
name: &'a str,
|
||||
},
|
||||
SetWindowFullscreen {
|
||||
window: Window,
|
||||
fullscreen: bool,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue