diff --git a/.gitignore b/.gitignore index 25b3b3b..5032061 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,6 @@ logs/ # Wallpaper source drop (baked copy lives in airootfs/usr/share/backgrounds) /Bread Background.png + +# Local hygiene notes (not for commit) +CLAUDE.md diff --git a/iso/airootfs/etc/skel/.config/hypr/hyprland.lua b/iso/airootfs/etc/skel/.config/hypr/hyprland.lua index 233da16..41c807f 100644 --- a/iso/airootfs/etc/skel/.config/hypr/hyprland.lua +++ b/iso/airootfs/etc/skel/.config/hypr/hyprland.lua @@ -168,3 +168,10 @@ hl.on("hyprland.start", function() hl.dispatch(hl.dsp.exec_cmd(cmd)) end end) + + +hl.gesture({ + fingers = 3, + direction = "horizontal", + action = "workspace", +}) diff --git a/iso/airootfs/etc/skel/.config/hypr/scripts/ui/settings.lua b/iso/airootfs/etc/skel/.config/hypr/scripts/ui/settings.lua index f9cd963..8d3a829 100644 --- a/iso/airootfs/etc/skel/.config/hypr/scripts/ui/settings.lua +++ b/iso/airootfs/etc/skel/.config/hypr/scripts/ui/settings.lua @@ -112,19 +112,6 @@ local function build_hl_config(v) dwindle = { preserve_split = true }, animations = { enabled = true }, misc = { disable_hyprland_logo = true, disable_splash_rendering = true }, - -- 3-finger touchpad swipe switches workspaces (touchscreen/touchpad - -- gesture, native to Hyprland — no plugin needed). - gestures = { - workspace_swipe = true, - workspace_swipe_fingers = 3, - workspace_swipe_distance = 300, - workspace_swipe_invert = true, - workspace_swipe_min_speed_to_force = 30, - workspace_swipe_cancel_ratio = 0.5, - workspace_swipe_create_new = true, - workspace_swipe_direction_lock = true, - workspace_swipe_forever = false, - }, } end