PixlOne / logiops

An unofficial userspace driver for HID++ Logitech devices
GNU General Public License v3.0
3.31k stars 263 forks source link

MX Anywhere 3 scroll wheel very slow sensitive #416

Open JasonEleventeen opened 10 months ago

JasonEleventeen commented 10 months ago

Vertical wheel is not sensitive enough and scrolls very slow


    {
        hires: false;
        invert: false;
        target: true;

        up: {
            mode: "Axis";
            axis: "REL_WHEEL_HI_RES";
            axis_multiplier: 5.0;
        },
        down: {
            mode: "Axis";
            axis: "REL_WHEEL_HI_RES";
            axis_multiplier: -5.0;
        },
    }; 
JasonEleventeen commented 10 months ago

Dug out the dongle, appears to only be an issue in bluetooth mode

dporta97 commented 9 months ago

In addiction to logid I have installed Solaar and this problem has been solved by applying the rotation speed in Solaar. It has kept all the shortcuts that I had been configured with logid

Staindk commented 9 months ago

I think you need to use REL_WHEEL and not REL_WHEEL_HI_RES, but I'm unsure.


EDIT: found this comment and just went with that - it seems to scroll much better now, but I might re-realise why I had disabled hires in the past.

Guess I upgraded this package last week because now my Anywhere 3 also scrolls super slowly. It used to work just fine :cry: I'm on bluetooth and don't really want to get off it.

The following helps but mousewheel still seems quite laggy:

hiresscroll: {
    hires: false;
    invert: false;
    target: true;
    up: {
        mode: "Axis";
        axis: "REL_WHEEL";
        axis_multiplier: 1.0;
    },
    down: {
        mode: "Axis";
        axis: "REL_WHEEL";
        axis_multiplier: -1.0;
    }
  };