logiops
logiops copied to clipboard
MX Anywhere 3 scroll wheel not working
Not sure what I am doing wrong, I have tried hires: true, smartshift: on: true but no matter what I have issues such as mouse middle button not remapping or scroll wheel not working at all.
devices: (
{
name: "MX Anywhere 3";
smartshift:
{
on: false;
threshold: 30;
default_threshold: 30;
};
hiresscroll: {
hires: false;
invert: false;
target: true;
};
buttons: (
{
cid: 0x52;
action =
{
type: "ToggleSmartshift";
};
},
{
cid: 0xc4;
action =
{
type: "Keypress";
keys: ["BTN_MIDDLE"];
};
}
);
}
);
hiresscroll.target: true means you want to specify up/down actions. Example:
hiresscroll:
{
hires: false;
invert: false;
target: true;
up: {
mode: "Axis";
axis: "REL_WHEEL_HI_RES";
axis_multiplier: 3.0;
},
down: {
mode: "Axis";
axis: "REL_WHEEL_HI_RES";
axis_multiplier: -3.0;
},
};
you didn't specify up/down so nothing happens on scroll event