Created
November 2, 2024 11:37
-
-
Save gabrielbidula/2f540b3bc22493f77e7d01757bff85df to your computer and use it in GitHub Desktop.
Karabiner Elements - Change Fn + hjkl to arrows
This file contains 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
{ | |
"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