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()")