Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save peterjmag/0c4ac8484e4f26e364159a40b455904e to your computer and use it in GitHub Desktop.

Select an option

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)
{
"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