Skip to content

Instantly share code, notes, and snippets.

@gabrielbidula
Created November 2, 2024 11:37
Show Gist options
  • Save gabrielbidula/2f540b3bc22493f77e7d01757bff85df to your computer and use it in GitHub Desktop.
Save gabrielbidula/2f540b3bc22493f77e7d01757bff85df to your computer and use it in GitHub Desktop.
Karabiner Elements - Change Fn + hjkl to arrows
{
"description": "Change Fn + h/j/k/l to Arrows",
"manipulators": [
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["fn"],
"optional": ["caps_lock"]
}
},
"to": [{ "key_code": "left_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "j",
"modifiers": {
"mandatory": ["fn"],
"optional": ["caps_lock"]
}
},
"to": [{ "key_code": "down_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "k",
"modifiers": {
"mandatory": ["fn"],
"optional": ["caps_lock"]
}
},
"to": [{ "key_code": "up_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "l",
"modifiers": {
"mandatory": ["fn"],
"optional": ["caps_lock"]
}
},
"to": [{ "key_code": "right_arrow" }],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment