Created
March 19, 2026 09:39
-
-
Save peterjmag/0c4ac8484e4f26e364159a40b455904e to your computer and use it in GitHub Desktop.
Karabiner-Elements: Map right_option+equal_sign to numpad plus sign (so I can zoom in on freeciv-gtk4 on Mac without a numpad)
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
| { | |
| "description": "Map right_option+equal_sign to numpad plus_sign", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "equal_sign", | |
| "modifiers": { | |
| "mandatory": ["right_option"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "keypad_plus", | |
| "modifiers": [] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment