Skip to content

Instantly share code, notes, and snippets.

@maud3l
Created July 15, 2023 10:20
Show Gist options
  • Save maud3l/6e16f00b60941a0a67331245abf6343a to your computer and use it in GitHub Desktop.
Save maud3l/6e16f00b60941a0a67331245abf6343a to your computer and use it in GitHub Desktop.
Logitech MX Master 3S Configuration with LogiOps
devices: (
{
name: "MX Master 3S";
smartshift:
{
on: true;
threshold: 30;
};
hiresscroll:
{
hires: true;
invert: false;
target: false;
};
thumbwheel: {
divert: true;
invert: false;
left: {
direction: "Left";
threshold: 1;
interval: 2;
mode: "OnInterval";
action = {
type: "Keypress";
keys: ["KEY_LEFTCTRL", "KEY_PAGEUP"];
};
};
right: {
direction: "Right";
mode: "OnInterval";
threshold: 1;
interval: 2;
action = {
type: "Keypress";
keys: ["KEY_LEFTCTRL", "KEY_PAGEDOWN"];
};
};
};
dpi: 1000;
buttons: (
{
cid: 0xc3;
action =
{
type: "Gestures";
gestures: (
{
direction: "Up";
mode: "OnRelease";
action =
{
type: "Keypress";
keys: ["KEY_LEFTCTRL", "KEY_F10"];
};
},
{
direction: "Down";
mode: "OnRelease";
action =
{
type: "Keypress";
keys: ["KEY_LEFTCTRL", "KEY_F7"];
};
},
{
direction: "Left";
mode: "OnRelease";
action =
{
type: "Keypress";
keys: ["KEY_LEFTMETA", "KEY_LEFT"];
};
},
{
direction: "Right";
mode: "OnRelease";
action =
{
type: "Keypress";
keys: ["KEY_LEFTMETA", "KEY_RIGHT"];
}
},
{
direction: "None"
mode: "NoPress"
}
);
};
},
{
cid: 0xc4;
action =
{
type = "ToggleSmartshift";
};
},
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment