Files
2026-05-06 13:56:12 +01:00

15 lines
314 B
Lua

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,
})