Skip to content

Instantly share code, notes, and snippets.

@0v3rth3d4wn
Created May 27, 2025 16:30
Show Gist options
  • Save 0v3rth3d4wn/7f06d52379f0e3ecc5053f9e675e9885 to your computer and use it in GitHub Desktop.
Save 0v3rth3d4wn/7f06d52379f0e3ecc5053f9e675e9885 to your computer and use it in GitHub Desktop.
Karabiner Elements
{
"description": "Change fn+hjkl to arrow keys",
"manipulators": [
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": [
"fn"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "j",
"modifiers": {
"mandatory": [
"fn"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "down_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "k",
"modifiers": {
"mandatory": [
"fn"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "up_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"fn"
],
"optional": [
"any"
]
}
},
"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