Last active
March 25, 2026 09:51
-
-
Save rdp77/deac2e6811d09203e005086272a2c8cb to your computer and use it in GitHub Desktop.
Logitech MX Master 2S Default Gesture - Logiops Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| devices: ( | |
| { | |
| name: "Wireless Mouse MX Master 2S"; | |
| smartshift: { on: true; threshold: 20; }; | |
| hiresscroll: { hires: true; invert: false; target: false; }; | |
| dpi: 1250; | |
| buttons: ( | |
| { | |
| cid: 0xc3; | |
| action: { | |
| type: "Gestures"; | |
| gestures: ( | |
| { | |
| direction: "Up"; | |
| mode: "OnRelease"; | |
| action: { type: "Keypress"; keys: ["KEY_LEFTMETA", "KEY_PAGEUP"]; }; | |
| }, | |
| { | |
| direction: "Down"; | |
| mode: "OnRelease"; | |
| action: { type: "Keypress"; keys: ["KEY_LEFTMETA", "KEY_PAGEDOWN"]; }; | |
| }, | |
| { | |
| direction: "Left"; | |
| mode: "OnRelease"; | |
| action: { type: "Keypress"; keys: ["KEY_LEFTCTRL", "KEY_LEFTALT", "KEY_LEFT"]; }; | |
| }, | |
| { | |
| direction: "Right"; | |
| mode: "OnRelease"; | |
| action: { type: "Keypress"; keys: ["KEY_LEFTCTRL", "KEY_LEFTALT", "KEY_RIGHT"]; }; | |
| }, | |
| { | |
| direction: "None"; | |
| mode: "OnRelease"; | |
| action: { type: "Keypress"; keys: ["KEY_LEFTMETA"]; }; | |
| } | |
| ); | |
| }; | |
| } | |
| ); | |
| } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment