Update DMS and add autostart rule

This commit is contained in:
2026-07-11 11:46:47 -04:00
parent a6067c85b8
commit 4f4dae9181
10 changed files with 46 additions and 6 deletions
+6 -6
View File
@@ -52,28 +52,28 @@ hl.define_submap("group", function()
hl.dsp.submap("reset")
end)
hl.bind("H", function()
hl.bind(mainMod .. " + H", function()
hl.dsp.window.move({ into_or_create_group = "left" })
hl.dsp.submap("reset")
end)
hl.bind("L", function()
hl.bind(mainMod .. " + L", function()
hl.dsp.window.move({into_or_create_group = "right" })
hl.dsp.submap("reset")
end)
hl.bind("K", function()
hl.bind(mainMod .. " + K", function()
hl.dsp.window.move({into_or_create_group = "up"})
hl.dsp.submap("reset")
end)
hl.bind("J", function()
hl.bind(mainMod .. " + J", function()
hl.dsp.window.move({into_or_create_group = "down"})
hl.dsp.submap("reset")
end)
hl.bind("bracketleft", hl.dsp.group.prev())
hl.bind("bracketright", hl.dsp.group.next())
hl.bind(mainMod .. " + bracketleft", hl.dsp.group.prev())
hl.bind(mainMod .. " + bracketright", hl.dsp.group.next())
hl.bind("ESCAPE", hl.dsp.submap("reset"))
end)