Created
September 29, 2020 06:29
-
-
Save mehori/54747a2dd69b2fb231c7fe9e7cce1a12 to your computer and use it in GitHub Desktop.
macOS Catalina で使用不能になっていた Logicool トラックボールのマウスボタン5をf11に割り当てる
This file contains 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
{ | |
"title": "Assign Logicool mouse button5 to F11", | |
"rules": [ | |
{ | |
"description": "Maps button 5 to f11", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"pointing_button": "button5" | |
}, | |
"to": [ | |
{ | |
"key_code": "f11" | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment