From d49be9609a4eeea39ccacf0d1d8ac48e40bf044d Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Sat, 6 Jun 2026 11:15:50 +0200 Subject: [PATCH] home/hypr: add super+scroll --- home/hypr/keybinds.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/hypr/keybinds.nix b/home/hypr/keybinds.nix index 76b5ca1..35ec074 100644 --- a/home/hypr/keybinds.nix +++ b/home/hypr/keybinds.nix @@ -60,6 +60,14 @@ in (lua "{ mouse = true }") ]) + # Scroll through workspaces on this monitor + (mod "mouse_up" [ + (lua "hl.dsp.focus({ workspace = \"r+1\" })") + ]) + (mod "mouse_down" [ + (lua "hl.dsp.focus({ workspace = \"r-1\" })") + ]) + # Window actions (mod "W" [ (lua "hl.dsp.window.close()")