fix(hyprland): issues with tracking workspaces

This commit is contained in:
Jake Stanger
2023-01-30 21:56:41 +00:00
parent d78d851858
commit 058c8f4228
4 changed files with 164 additions and 125 deletions

View File

@@ -70,13 +70,13 @@ pub enum WorkspaceUpdate {
/// This is re-sent to all subscribers when a new subscription is created.
Init(Vec<Workspace>),
Add(Workspace),
Remove(Workspace),
Remove(String),
Update(Workspace),
Move(Workspace),
/// Declares focus moved from the old workspace to the new.
Focus {
old: Workspace,
new: Workspace,
old: String,
new: String,
},
}