Skip to content

Instantly share code, notes, and snippets.

@Kolandrious
Last active March 3, 2020 18:38
Show Gist options
  • Save Kolandrious/cc05962f1fcf99f7fe0811d243497deb to your computer and use it in GitHub Desktop.
Save Kolandrious/cc05962f1fcf99f7fe0811d243497deb to your computer and use it in GitHub Desktop.
Karabiner: command + j/k/l/i to arrow keys
{
"title": "command + j/k/l/i to arrow keys",
"rules": [
{
"description": "Change Command + j/k/l/i to Arrows",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "j",
"modifiers": {
"mandatory": [
"right_gui"
]
}
},
"to": [
{
"key_code": "left_arrow"
}
]
},
{
"type": "basic",
"from": {
"key_code": "k",
"modifiers": {
"mandatory": [
"right_gui"
]
}
},
"to": [
{
"key_code": "down_arrow"
}
]
},
{
"type": "basic",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"right_gui"
]
}
},
"to": [
{
"key_code": "right_arrow"
}
]
},
{
"type": "basic",
"from": {
"key_code": "i",
"modifiers": {
"mandatory": [
"right_gui"
]
}
},
"to": [
{
"key_code": "up_arrow"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment