Skip to content

Instantly share code, notes, and snippets.

@koenhendriks
Created May 20, 2025 07:23
Show Gist options
  • Save koenhendriks/5cce5dbe33937a0b8d3d5d7c84ae69bf to your computer and use it in GitHub Desktop.
Save koenhendriks/5cce5dbe33937a0b8d3d5d7c84ae69bf to your computer and use it in GitHub Desktop.
Logiops configuration on PC in `/etc/logid.cfg`
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