use hyprspace for layouts

This commit is contained in:
2026-08-17 00:03:23 -07:00
parent 816eb22b2f
commit bdec7e77bf
6 changed files with 23 additions and 6 deletions
+4 -4
View File
@@ -130,10 +130,10 @@ hl.bind(
-- One direction table drives arrow-key focus, Hyper+WASD focus/movement, and
-- moving the active workspace between adjacent monitors.
local directions = {
{ arrow = "left", key = "A", direction = "l", monitor = "left" },
{ arrow = "left", key = "A", direction = "l", monitor = "left" },
{ arrow = "right", key = "D", direction = "r", monitor = "right" },
{ arrow = "up", key = "W", direction = "u", monitor = "above", stage_message = "cycleprev" },
{ arrow = "down", key = "S", direction = "d", monitor = "below", stage_message = "cyclenext" },
{ arrow = "up", key = "W", direction = "u", monitor = "above", stage_message = "cycleprev" },
{ arrow = "down", key = "S", direction = "d", monitor = "below", stage_message = "cyclenext" },
}
for _, direction in ipairs(directions) do
@@ -290,7 +290,7 @@ hl.bind(
hl.bind(
chord(hyper, "SPACE"),
function()
hl.plugin.hyprtasking.toggle("all")
hl.plugin.overview.toggle("all")
end,
{ description = "Toggle all-workspace window overview" }
)