Created
April 30, 2026 16:54
-
-
Save mjrdnk/bd6b0fc3cb9b07194c6ee07493023cf3 to your computer and use it in GitHub Desktop.
Macbook international keyboard: right option + backspace to delete to mimic Logitech mx mini keyboard fn key placement
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
| Edit ~/.config/karabiner/karabiner.json and add this to the complex_modifications.rules array of your active profile: | |
| { | |
| "description": "Right Option + Backspace → Forward Delete", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "delete_or_backspace", | |
| "modifiers": { | |
| "mandatory": ["right_option"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": [ | |
| { "key_code": "delete_forward" } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment