Created
August 7, 2022 20:08
-
-
Save DATADEER/ae6fdba46446f8429b955e4419f2c91e 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": "SHIFT ARROWS", | |
"rules": [ | |
{ | |
"description": "SHIFT LEFT_ARROW", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"right_gui", | |
"left_shift" | |
] | |
}, | |
"key_code": "s" | |
}, | |
"to": [ | |
{ | |
"repeat": true, | |
"modifiers": [ | |
"left_shift" | |
], | |
"key_code": "left_arrow" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "SHIFT RIGHT_ARROW", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"right_gui", | |
"left_shift" | |
] | |
}, | |
"key_code": "f" | |
}, | |
"to": [ | |
{ | |
"repeat": true, | |
"modifiers": [ | |
"left_shift" | |
], | |
"key_code": "right_arrow" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "SHIFT UP_ARROW", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"right_gui", | |
"left_shift" | |
] | |
}, | |
"key_code": "e" | |
}, | |
"to": [ | |
{ | |
"repeat": true, | |
"modifiers": [ | |
"left_shift" | |
], | |
"key_code": "up_arrow" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "SHIFT DOWN_ARROW", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"right_gui", | |
"left_shift" | |
] | |
}, | |
"key_code": "d" | |
}, | |
"to": [ | |
{ | |
"repeat": true, | |
"modifiers": [ | |
"left_shift" | |
], | |
"key_code": "down_arrow" | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment