mirror of
https://github.com/PixlOne/logiops.git
synced 2025-07-16 14:22:35 +08:00
26 lines
818 B
INI
26 lines
818 B
INI
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"]; }; }
|
|
|
|
);
|
|
});
|