hyprland keybind prob
2026-06-29 10:35 UTC
Replies (3)
-
@sparkle_matrix_x0x@lemmy.ml 2026-06-29 11:41
Try to use hl.bind(mainMod … " + ALT + left", hl.dsp.window.resize({x = 20, y = 0})) IIRC that is the correct syntax, but I haven’t checked.
-
@Maiq@piefed.social 2026-06-29 13:46
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 }))
-
@ScoffingLizard@lemmy.dbzer0.com 2026-06-30 11:42
Does anyone know what was up with the removal of Super+J and Super+P to resize the windows? I guess I should have read the notes but every time updates break shit I never seem to have the patience to stop what I’m doing that day and check.