Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions TESTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ This is not by any means an exhaustive list. Many more devices are supported but
| T400 | Yes | `Zone Touch Mouse T400` |
| MX Keys | Yes | `MX Keys Wireless Keyboard` |
| M500s | Yes | `Advanced Corded Mouse M500s` |
| M650L | Yes | `Signature M650 L Mouse` |
25 changes: 25 additions & 0 deletions example_logiM650Lmouse.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
devices: ({
name: "Signature M650 L Mouse";
// Example for the Logitech Signature M650 L Mouse that remaps the left side front button to right shift
// and left side front button to right control keys to use for keymaps in games
// note, holding down the button acts like holding down the shift or ctrl keys

// A lower threshold number makes the wheel switch to free-spin mode
// quicker when scrolling fast.
smartshift: { on: true; threshold: 20; };

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

// Higher numbers make the mouse more sensitive (cursor moves faster),
dpi: 1500;

buttons: (

// back thumb button 8.
{ cid: 0x53; action = { type: "Keypress"; keys: ["KEY_RIGHTCTRL"]; }; },

// front thumb button 9.
{ cid: 0x56; action = { type: "Keypress"; keys: ["KEY_RIGHTSHIFT"]; }; }

);
});