Skip to content

Instantly share code, notes, and snippets.

@DATADEER
Last active August 7, 2022 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DATADEER/5fcdab04339c9b4e54437468a2c63c10 to your computer and use it in GitHub Desktop.
Save DATADEER/5fcdab04339c9b4e54437468a2c63c10 to your computer and use it in GitHub Desktop.
Map FN + E,S,D,F TO ARROW_UP,ARROW_LEFT,ARROW_DOWN,ARROW_RIGHT in Karabiner Elements
{
"title": "ARROWS",
"rules": [
{
"description": "LEFT_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui"
]
},
"key_code": "s"
},
"to": [
{
"repeat": true,
"key_code": "left_arrow"
}
]
}
]
},
{
"description": "RIGHT_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui"
]
},
"key_code": "f"
},
"to": [
{
"repeat": true,
"key_code": "right_arrow"
}
]
}
]
},
{
"description": "UP_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui"
]
},
"key_code": "e"
},
"to": [
{
"repeat": true,
"key_code": "up_arrow"
}
]
}
]
},
{
"description": "DOWN_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui"
]
},
"key_code": "d"
},
"to": [
{
"repeat": true,
"key_code": "down_arrow"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment