Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabioluciano/f54283d4206904fc6388dfe5c03745ce to your computer and use it in GitHub Desktop.
Save fabioluciano/f54283d4206904fc6388dfe5c03745ce to your computer and use it in GitHub Desktop.
Logid config for MX Master 3
devices: (
{
name: "Wireless Mouse MX Master 3";
dpi: 1500;
smartshift:
{
on: true;
threshold: 15;
};
hiresscroll:
{
hires: true;
invert: false;
target: false;
};
thumbwheel:
{
divert: true;
invert: false;
left: {
mode: "OnInterval";
interval: 3;
action: {
type: "Keypress";
keys: ["KEY_VOLUMEDOWN"];
};
};
right: {
mode: "OnInterval";
interval: 3;
action: {
type: "Keypress";
keys: ["KEY_VOLUMEUP"];
};
};
tap: {
type: "Keypress";
keys: ["KEY_MUTE"];
};
};
buttons: (
{
cid: 0xc3;
action =
{
type: "Gestures";
gestures: (
{
direction: "Up";
mode: "OnRelease";
action =
{
type: "Keypress";
keys: ["KEY_LEFTCTRL","KEY_LEFTALT", "KEY_UP"];
};
},
{
direction: "Down";
mode: "OnRelease";
action =
{
type: "Keypress";
keys: ["KEY_LEFTCTRL","KEY_LEFTALT", "KEY_DOWN"];
};
},
{
direction: "Right";
mode: "OnRelease";
action =
{
type: "Keypress";
keys: ["KEY_LEFTCTRL","KEY_LEFTALT", "KEY_RIGHT"];
};
},
{
direction: "Left";
mode: "OnRelease";
action =
{
type: "Keypress";
keys: ["KEY_LEFTCTRL","KEY_LEFTALT", "KEY_LEFT"];
};
},
{
direction: "None"
mode: "OnRelease";
action = {
type: "Keypress";
keys: ["KEY_LEFTMETA", "KEY_TAB"];
}
}
);
};
},
{
cid: 0xc4;
action =
{
type = "ToggleSmartshift";
};
},
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment