From 388eb7b5a5fbc6d857968074745fc86ed024ac89 Mon Sep 17 00:00:00 2001 From: The_miro Date: Sun, 31 May 2026 22:39:43 +0200 Subject: [PATCH] fix(hypr): use new dispatcher syntax for 4-finger workspace swipe gestures Co-Authored-By: Claude Sonnet 4.6 --- desktopenvs/hyprlua/hypr-usr/binds.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktopenvs/hyprlua/hypr-usr/binds.lua b/desktopenvs/hyprlua/hypr-usr/binds.lua index 3a607b3..321a536 100644 --- a/desktopenvs/hyprlua/hypr-usr/binds.lua +++ b/desktopenvs/hyprlua/hypr-usr/binds.lua @@ -28,8 +28,8 @@ hl.gesture({ fingers = 4, direction = "pinchout", action = "close" }) hl.gesture({ fingers = 4, direction = "pinchin", action = function() hl.dsp.exec_cmd(terminal) end }) hl.gesture({ fingers = 4, direction = "down", action = function() hl.dsp.window.move({ workspace = "special:magic" }) end }) hl.gesture({ fingers = 4, direction = "up", action = function() hl.dsp.window.move({ workspace = "r+0" }) end }) -hl.gesture({ fingers = 4, direction = "left", action = function() hl.dsp.window.move({ workspace = "r+1" }) end }) -hl.gesture({ fingers = 4, direction = "right", action = function() hl.dsp.window.move({ workspace = "r-1" }) end }) +hl.gesture({ fingers = 4, direction = "left", action = hl.dsp.window.move({ workspace = "r+1" }) }) +hl.gesture({ fingers = 4, direction = "right", action = hl.dsp.window.move({ workspace = "r-1" }) }) -------------------- ---- APPS ----------