Post #3470563
2026-06-29 13:46 UTC
Here is what I use. shiftMod is a variable I set up which is just mainMod + Shift
-- Resize Window Horizontal
hl.bind(shiftMod .. " + left", hl.dsp.window.resize({ x = -40, y = 0, relative = -1, window = activewindow }))
hl.bind(shiftMod .. " + right", hl.dsp.window.resize({ x = 40, y = 0, relative = 1, window = activewindow }))
-- -- Resize Window Vertaclly
hl.bind(shiftMod .. " + up", hl.dsp.window.resize({ x = 0, y = -40, relative = -1, window = activewindow }))
hl.bind(shiftMod .. " + down", hl.dsp.window.resize({ x = 0, y = 40, relative = 1, window = activewindow }))
Replies (1)
-
@sinextitan@lemmy.world 2026-06-29 16:11
after reading your config I also set up variables for my most used modifier binds. however I omitted window from mine and it seems to work. thank you