hyprland: place 3-finger workspace swipe after binds, before autostart
The gesture was already on main but dangling at EOF. settings.lua no longer carries the old hyprlang gestures table.
This commit is contained in:
parent
a3ead6607a
commit
d7c4fbd51f
1 changed files with 6 additions and 7 deletions
|
|
@ -94,6 +94,12 @@ pcall(function()
|
|||
bindings = binds.bindings,
|
||||
})
|
||||
end)
|
||||
-- 3-finger horizontal trackpad swipe → workspace switch (1:1 gesture)
|
||||
hl.gesture({
|
||||
fingers = 3,
|
||||
direction = "horizontal",
|
||||
action = "workspace",
|
||||
})
|
||||
|
||||
-- ---------------------------------------------------------------------------
|
||||
-- Autostart. Core bootstrap sequence (polkit agent, dark theme, wallpaper
|
||||
|
|
@ -168,10 +174,3 @@ hl.on("hyprland.start", function()
|
|||
hl.dispatch(hl.dsp.exec_cmd(cmd))
|
||||
end
|
||||
end)
|
||||
|
||||
|
||||
hl.gesture({
|
||||
fingers = 3,
|
||||
direction = "horizontal",
|
||||
action = "workspace",
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue