I've noticed that hyprland-autoname-workspaces is not working for me since I moved to hyprland 0.55 (someone else has already reported this: hyprland-community/hyprland-autoname-workspaces#137).
While trying to debug that, everything seems to be running fine, it's raising no errors or warnings when it tries to rename workspaces.
When I dug down to this package, I can see hyprland-autoname-workspaces would be triggering
|
RenameWorkspace(id, name) => { |
|
format!( |
|
"renameworkspace{sep}{id} {}", |
|
name.unwrap_or(&id.to_string()) |
|
) |
|
} |
but the syntax in hyprland 0.55 is now:
hyprctl dispatch 'hl.dsp.workspace.rename({ workspace=1, name="test" })'
this is going to affect all of the dispatches I assume?
I've noticed that hyprland-autoname-workspaces is not working for me since I moved to hyprland 0.55 (someone else has already reported this: hyprland-community/hyprland-autoname-workspaces#137).
While trying to debug that, everything seems to be running fine, it's raising no errors or warnings when it tries to rename workspaces.
When I dug down to this package, I can see hyprland-autoname-workspaces would be triggering
hyprland-rs/src/dispatch.rs
Lines 829 to 834 in 1433cd9
but the syntax in hyprland 0.55 is now:
this is going to affect all of the dispatches I assume?