Created
May 20, 2025 07:23
-
-
Save koenhendriks/5cce5dbe33937a0b8d3d5d7c84ae69bf to your computer and use it in GitHub Desktop.
Logiops configuration on PC in `/etc/logid.cfg`
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 3"; | |
buttons: ( | |
{ | |
cid: 0xc3; | |
action = | |
{ | |
type: "Gestures"; | |
gestures: ( | |
{ | |
direction: "Up"; | |
mode: "OnRelease"; | |
action = | |
{ | |
type: "Keypress"; | |
keys: ["KEY_LEFTMETA", "KEY_LEFTCTRL", "KEY_UP"]; | |
}; | |
}, | |
{ | |
direction: "Down"; | |
mode: "OnRelease"; | |
action = | |
{ | |
type: "Keypress"; | |
keys: ["KEY_LEFTMETA","KEY_LEFTCTRL", "KEY_DOWN"]; | |
}; | |
}, | |
{ | |
direction: "None"; | |
mode: "OnRelease"; | |
action = | |
{ | |
type: "Keypress"; | |
keys: ["KEY_LEFTMETA","KEY_W"]; | |
}; | |
} | |
); | |
}; | |
}, | |
); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment