Skip to content

Instantly share code, notes, and snippets.

@DATADEER
Last active August 7, 2022 20:09
Show Gist options
  • Save DATADEER/4785bb27f6e194f7ce361094700a2e9e to your computer and use it in GitHub Desktop.
Save DATADEER/4785bb27f6e194f7ce361094700a2e9e to your computer and use it in GitHub Desktop.
{
"title": "OPTION ARROWS",
"rules": [
{
"description": "OPTION LEFT_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_option"
]
},
"key_code": "s"
},
"to": [
{
"repeat": true,
"modifiers": [
"right_alt"
],
"key_code": "left_arrow"
}
]
}
]
},
{
"description": "OPTION RIGHT_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_option"
]
},
"key_code": "f"
},
"to": [
{
"repeat": true,
"modifiers": [
"right_alt"
],
"key_code": "right_arrow"
}
]
}
]
},
{
"description": "OPTION UP_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_option"
]
},
"key_code": "e"
},
"to": [
{
"repeat": true,
"modifiers": [
"right_alt"
],
"key_code": "up_arrow"
}
]
}
]
},
{
"description": "OPTION DOWN_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_option"
]
},
"key_code": "d"
},
"to": [
{
"repeat": true,
"modifiers": [
"right_alt"
],
"key_code": "down_arrow"
}
]
}
]
},
{
"description": "OPTION SHIFT LEFT_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_option",
"left_shift"
]
},
"key_code": "s"
},
"to": [
{
"repeat": true,
"modifiers": [
"right_alt",
"left_shift"
],
"key_code": "left_arrow"
}
]
}
]
},
{
"description": "OPTION SHIFT RIGHT_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_option",
"left_shift"
]
},
"key_code": "f"
},
"to": [
{
"repeat": true,
"modifiers": [
"right_alt",
"left_shift"
],
"key_code": "right_arrow"
}
]
}
]
},
{
"description": "OPTION SHIFT UP_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_option",
"left_shift"
]
},
"key_code": "e"
},
"to": [
{
"repeat": true,
"modifiers": [
"right_alt",
"left_shift"
],
"key_code": "up_arrow"
}
]
}
]
},
{
"description": "OPTION SHIFT DOWN_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_option",
"left_shift"
]
},
"key_code": "d"
},
"to": [
{
"repeat": true,
"modifiers": [
"right_alt",
"left_shift"
],
"key_code": "down_arrow"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment