Skip to content

Instantly share code, notes, and snippets.

@mjrdnk
Created April 30, 2026 16:54
Show Gist options
  • Select an option

  • Save mjrdnk/bd6b0fc3cb9b07194c6ee07493023cf3 to your computer and use it in GitHub Desktop.

Select an option

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
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