Open tcmal opened 1 year ago
It's still there https://wiki.hyprland.org/Configuring/Variables/#binds
allow_workspace_cycles
If enabled, workspaces don’t forget their previous workspace, so cycles can be created by switching to the first workspace in a sequence, then endlessly going to the previous workspace.
In practice, it works like this
bind = SUPER, Tab, workspace, previous
If allow_workspace_cycles
is true
, going
1 -> 2 -> 3
, and pressing super+tab 2 times will result in going 3 -> 2 -> 1
.
If false
- 3 -> 2 -> 3
(i3 back and forth behavior)
The default behaviour (
binds:allow_workspace_cycles = false
) actually allows workspace cycles to be created, whereas setting it to true disallows this.Since changing this would silently break a lot of configs, maybe it would be better to add a newly named property and deprecate the old one.