feat: fixed hyprland window resize binds

This commit is contained in:
2026-08-19 10:22:41 +02:00
parent 2a81c8c879
commit 784e1ad891
+4 -4
View File
@@ -42,10 +42,10 @@ hl.define_submap("window", function()
end, { description = "Activate insta-kill" }) end, { description = "Activate insta-kill" })
-- Resize -- Resize
hl.bind("l", hl.dsp.window.resize({ x = 10, y = 0 }), { description = "Increase size horizontally" }) hl.bind("l", hl.dsp.window.resize({ x = 10, y = 0, relative = true }), { description = "Increase size horizontally" })
hl.bind("h", hl.dsp.window.resize({ x = -10, y = 0 }), { description = "Decrease size horizontally" }) hl.bind("h", hl.dsp.window.resize({ x = -10, y = 0, relative = true }), { description = "Decrease size horizontally" })
hl.bind("j", hl.dsp.window.resize({ x = 0, y = 10 }), { description = "Increase size vertically" }) hl.bind("j", hl.dsp.window.resize({ x = 0, y = 10, relative = true }), { description = "Increase size vertically" })
hl.bind("k", hl.dsp.window.resize({ x = 0, y = -10 }), { description = "Decrease size vertically" }) hl.bind("k", hl.dsp.window.resize({ x = 0, y = -10, relative = true }), { description = "Decrease size vertically" })
hl.bind("Escape", function() hl.bind("Escape", function()
exit_submap() exit_submap()