Last active
August 7, 2022 20:09
-
-
Save DATADEER/4785bb27f6e194f7ce361094700a2e9e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"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