logiops
logiops copied to clipboard
Multiple keys not always working
Hello, I have set my mouse to copy, paste and cut with gestures, however once in a while it will not do the ctrl key and only write 'c' 'v' or 'x' in my text editor. I was wondering if this is known or if there is a fix.
Here is my config
devices: (
{
name: "Wireless Mouse MX Master 3";
hiresscroll:
{
hires: true;
invert: false;
};
thumbwheel:
{
divert: false
};
buttons: (
{
cid: 0xc4;
action:
{
type: "Gestures";
gestures: (
{
direction: "Left";
mode: "OnThreshold";
treshold: 100;
action:
{
type: "Keypress";
keys: ["KEY_LEFTCTRL", "KEY_C"];
};
},
{
direction: "Down";
mode: "OnThreshold";
treshold: 100;
action:
{
type: "Keypress";
keys: ["KEY_LEFTCTRL", "KEY_X"];
};
},
{
direction: "right";
mode: "OnThreshold";
treshold: 100;
action:
{
type: "Keypress";
keys: ["KEY_LEFTCTRL", "KEY_V"];
};
},
);
}
}
);
}
)
thanks :)
I have the same issue.