From d7c4fbd51fc29ce86cfe7e683b03cdefc857cd14 Mon Sep 17 00:00:00 2001 From: Breadway Date: Sat, 15 Aug 2026 22:34:31 +0800 Subject: [PATCH] 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. --- iso/airootfs/etc/skel/.config/hypr/hyprland.lua | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/iso/airootfs/etc/skel/.config/hypr/hyprland.lua b/iso/airootfs/etc/skel/.config/hypr/hyprland.lua index 41c807f..5262654 100644 --- a/iso/airootfs/etc/skel/.config/hypr/hyprland.lua +++ b/iso/airootfs/etc/skel/.config/hypr/hyprland.lua @@ -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", -})