From e7035d6ad0ea8e652559418dbdf036d4c6fe9a6f Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 7 May 2026 12:07:03 -0500 Subject: fix(hyprland): natural-scroll the mouse, not just the touchpad The `input` block had `natural_scroll = true` only inside its `touchpad` sub-block. The BT mouse fell back to Hyprland's default and scrolled the opposite way from the touchpad. Switching between input devices flipped scroll direction. I added `natural_scroll = true` at the top level of the `input` block. The touchpad's own setting still applies because Hyprland scopes touchpad config separately. Touchpad behavior is unchanged. --- dotfiles/hyprland/.config/hypr/hyprland.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/dotfiles/hyprland/.config/hypr/hyprland.conf b/dotfiles/hyprland/.config/hypr/hyprland.conf index 2c2127f..a585cb5 100644 --- a/dotfiles/hyprland/.config/hypr/hyprland.conf +++ b/dotfiles/hyprland/.config/hypr/hyprland.conf @@ -125,6 +125,7 @@ input { follow_mouse = 0 float_switch_override_focus = 1 mouse_refocus = false + natural_scroll = true touchpad { natural_scroll = true } -- cgit v1.2.3