Karabiner-Elements: Mouse イベントをスクロールホイールに変換する - Button4でトグルする
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
{ | |
"maintainers": [ | |
"yamaya" | |
], | |
"rules": [ | |
{ | |
"available_since": "12.3.0", | |
"description": "Convert mouse move to scroll wheel (Toggle with button4)", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"name": "enable_mouse_motion_to_scroll", | |
"type": "variable_if", | |
"value": 0 | |
} | |
], | |
"from": { | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
}, | |
"pointing_button": "button4" | |
}, | |
"to": [ | |
{ | |
"set_variable": { | |
"name": "enable_mouse_motion_to_scroll", | |
"value": 1 | |
} | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"name": "enable_mouse_motion_to_scroll", | |
"type": "variable_if", | |
"value": 1 | |
} | |
], | |
"from": { | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
}, | |
"pointing_button": "button4" | |
}, | |
"to": [ | |
{ | |
"set_variable": { | |
"name": "enable_mouse_motion_to_scroll", | |
"value": 0 | |
} | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"name": "enable_mouse_motion_to_scroll", | |
"type": "variable_if", | |
"value": 1 | |
} | |
], | |
"from": { | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"type": "mouse_motion_to_scroll" | |
} | |
] | |
} | |
], | |
"title": "Change mouse motion to scroll" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment