From 9f4afde0c5a7ffa56823a944a7196e4d4ccfec54 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 11 May 2026 23:00:50 +0200 Subject: [PATCH] use globalshortcut for 4finger up touchpad gesture --- dots/.config/hypr/hyprland/general.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dots/.config/hypr/hyprland/general.lua b/dots/.config/hypr/hyprland/general.lua index 6c772ecea..fab1e5d2b 100644 --- a/dots/.config/hypr/hyprland/general.lua +++ b/dots/.config/hypr/hyprland/general.lua @@ -25,16 +25,14 @@ hl.gesture({ fingers = 4, direction = "up", action = function() - -- For whatever reason hl.dsp.global doesn't work here??? - hl.exec_cmd("qs -c $qsConfig ipc call search workspacesToggle") + hl.dispatch(hl.dsp.global("quickshell:overviewWorkspacesToggle")) end }) hl.gesture({ fingers = 4, direction = "down", action = function() - -- For whatever reason hl.dsp.global doesn't work here??? - hl.exec_cmd("qs -c $qsConfig ipc call search workspacesToggle") + hl.dispatch(hl.dsp.global("quickshell:overviewWorkspacesToggle")) end })