1
0
Fork 0
forked from wry/wry

feat: implement scratchpad window toggling

This commit is contained in:
atagen 2026-05-31 17:23:56 +10:00
parent 5c2f631fdb
commit d756c8a6a2
17 changed files with 515 additions and 3 deletions

View file

@ -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,