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