logiops icon indicating copy to clipboard operation
logiops copied to clipboard

Logi m650 l

Open dalenicholson opened this issue 3 years ago • 2 comments

Add an example for the Logitech M650 L mouse that I set up and tested.

Updated the compatibility file to include the M650 since I've validated it works.

dalenicholson avatar Aug 22 '22 14:08 dalenicholson

+1, M650 (non L version) works too and seems to use the same button CIDs

markozajc avatar Aug 29 '23 20:08 markozajc

Many thanks !

Under Debian, pressing side buttons on my M650 L wouldn't trigger before releasing. This is the only workaround I have found over Logitech Options+ on Windows to disable horizontal scrolling.

Here's my slightly modified /etc/logid.cfg : (verify device name on your side using sudo logid -v)

devices: ({
    name: "Signature M650 L";
    smartshift: {
      on: true;
      threshold: 20;
    };
    hiresscroll: {
      hires: true;
      invert: false;
      target: false;
    };
    dpi: 1500;

    buttons: ({
        cid: 0x53;
        action = {
          type: "Keypress";
          keys: ["BTN_SIDE"];
        };},{
        cid: 0x56;
        action = {
          type: "Keypress";
          keys: ["BTN_EXTRA"];
        };
      }
    );
  }
);

nkapias avatar May 22 '24 23:05 nkapias