Hyprland/example/layouts/grid.lua

15 lines
314 B
Lua
Raw Normal View History

hl.layout.register("grid", {
recalculate = function(ctx)
local n = #ctx.targets
if n == 0 then
return
end
local cols = math.ceil(math.sqrt(n))
for i, target in ipairs(ctx.targets) do
target:place(ctx:grid_cell(i, cols))
end
end,
})