Last active
January 27, 2024 20:08
-
-
Save luiznegreiros/08b25baa925c5e6e531c5f4099aa8216 to your computer and use it in GitHub Desktop.
Configuração do logops (config mouse MX720) no linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
devices: ( | |
{ | |
name: "M720 Triathlon Multi-Device Mouse"; | |
# smartshift: | |
# { | |
# on: true; | |
# threshold: 30; | |
# }; | |
hiresscroll: | |
{ | |
hires: true; | |
invert: false; | |
target: false; | |
}; | |
# dpi: 1000; | |
buttons: ( | |
{ | |
cid: 0xd0; | |
action = | |
{ | |
type: "Gestures"; | |
gestures: ( | |
{ | |
direction: "Up"; | |
mode: "OnRelease"; | |
action = | |
{ | |
type: "Keypress"; | |
keys: ["KEY_LEFTMETA", "KEY_PAGEUP"]; | |
}; | |
}, | |
{ | |
direction: "Down"; | |
mode: "OnRelease"; | |
action = | |
{ | |
type: "Keypress"; | |
keys: ["KEY_LEFTMETA", "KEY_PAGEDOWN"]; | |
}; | |
}, | |
{ | |
direction: "Left"; | |
mode: "OnRelease"; | |
action = | |
{ | |
type: "Keypress"; | |
keys: ["KEY_LEFTMETA", "KEY_HOME"]; | |
}; | |
}, | |
{ | |
direction: "Right"; | |
mode: "OnRelease"; | |
action = | |
{ | |
type: "Keypress"; | |
keys: ["KEY_LEFTMETA", "KEY_END"]; | |
}; | |
}, | |
{ | |
direction: "None" | |
mode: "OnRelease" | |
action = | |
{ | |
type: "Keypress"; | |
keys: ["KEY_LEFTMETA"]; | |
} | |
} | |
); | |
}; | |
} | |
); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Site logops https://github.com/PixlOne/logiops