fix(hypr): revert gesture action to function callback form

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main
Amir Alexander Abdelbaki 2026-05-31 22:41:21 +02:00
parent 388eb7b5a5
commit 6c4dfd10fa
1 changed files with 2 additions and 2 deletions

View File

@ -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 = hl.dsp.window.move({ workspace = "r+1" }) })
hl.gesture({ fingers = 4, direction = "right", action = hl.dsp.window.move({ workspace = "r-1" }) })
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 })
--------------------
---- APPS ----------