Skip to content

Instantly share code, notes, and snippets.

@sunsetsonwheels
Last active September 21, 2022 13:48
Show Gist options
  • Save sunsetsonwheels/a0257e7ce2f6eeacb673d26543a28c6d to your computer and use it in GitHub Desktop.
Save sunsetsonwheels/a0257e7ce2f6eeacb673d26543a28c6d to your computer and use it in GitHub Desktop.
Home & End for macOS (Karabiner Elements complex modification)
{
"title": "Home & End for macOS",
"rules": [
{
"description": "Make the Home & End key behave like they would on PCs",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "end"
},
"to": {
"key_code": "right_arrow",
"modifiers": ["right_command"]
}
},
{
"type": "basic",
"from": {
"key_code": "home"
},
"to": {
"key_code": "left_arrow",
"modifiers": ["right_command"]
}
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment