Created
October 27, 2020 09:40
-
-
Save endrebak/70306313af6685b0536dc3a43e48d876 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"parameters": { | |
"basic.simultaneous_threshold_milliseconds": 50, | |
"basic.to_delayed_action_delay_milliseconds": 500, | |
"basic.to_if_alone_timeout_milliseconds": 1000, | |
"basic.to_if_held_down_threshold_milliseconds": 500, | |
"mouse_motion_to_scroll.speed": 100 | |
}, | |
"rules": [ | |
{ | |
"description": "hyper+e to option-right", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "e", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "right_arrow", | |
"modifiers": "right_option" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "hyper+tab to option-left", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "tab", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_arrow", | |
"modifiers": "right_option" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "down to tab", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "down_arrow" | |
}, | |
"to": [ | |
{ | |
"key_code": "tab" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "command plus down to cmd-tab", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "down_arrow", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "tab", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "shift plus down to shift-tab", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "down_arrow", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "tab", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "tab to w", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "tab" | |
}, | |
"to": [ | |
{ | |
"key_code": "w" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "tab plus option_l to F9", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "tab", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f9" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "tab plus control_l to cntrl-w", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "tab", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "w", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "tab plus command_l to command+w", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "tab", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "w", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "tab plus command_r to !", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "tab", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "1", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "tab plus shift_l to W", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "tab", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "w", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "q to e", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "q" | |
}, | |
"to": [ | |
{ | |
"key_code": "e" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "q plus option_l to F10", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "q", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f10" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "q plus control_l to control+e", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "q", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "e", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "q plus command_l to command+e", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "q", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "e", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "q plus command_r to \"", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "q", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "2", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "q plus shift_l to E", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "q", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "e", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "w to r", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "w" | |
}, | |
"to": [ | |
{ | |
"key_code": "r" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "w plus option_l to F11", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "w", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f11" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "w plus control_l to control+r", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "w", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "r", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "w plus command_l to command+r", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "w", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "r", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "w plus command_r to '", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "w", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "non_us_backslash" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "w plus shift_l to R", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "w", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "r", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "e to t", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "e" | |
}, | |
"to": [ | |
{ | |
"key_code": "t" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "e plus option_l to F11", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "e", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f11" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "e plus command_l to command+r", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "e", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "t", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "e plus command_r to '", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "e", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "0", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "e plus shift_l to T", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "e", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "t", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "caps_lock to left (vimkeys)", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { | |
"mandatory": [ | |
"left_option", | |
"left_control", | |
"left_command", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_arrow" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "a to down (vimkeys)", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "a", | |
"modifiers": { | |
"mandatory": [ | |
"left_option", | |
"left_control", | |
"left_command", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "down_arrow" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "s to up (vimkeys)", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "s", | |
"modifiers": { | |
"mandatory": [ | |
"left_option", | |
"left_control", | |
"left_command", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "up_arrow" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "d to right (vimkeys)", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "d", | |
"modifiers": { | |
"mandatory": [ | |
"left_option", | |
"left_control", | |
"left_command", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "right_arrow" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "CAPS_LOCK to a", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock" | |
}, | |
"to": [ | |
{ | |
"key_code": "left_shift", | |
"modifiers": [ | |
"left_command", | |
"left_control" | |
] | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "a" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "CAPS_LOCK plus option_l to F5", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f5" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "CAPS_LOCK plus command_r to comma", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "comma" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "CAPS_LOCK plus control to cntrl-a", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "a", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "CAPS_LOCK plus shift_l to A", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "a", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "a plus option_l to F6", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "a", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f6" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "a plus command_l to command+s", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "a", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "s", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "a plus command_r to dot", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "a", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "period" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "a plus shift_l to S", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "a", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "s", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "A held down to control", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "a" | |
}, | |
"to": [ | |
{ | |
"key_code": "left_control" | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "s" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "s plus command_r to colon", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "s", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "period", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "s plus command_l to command-D", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "s", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "d", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "s plus shift_l to D", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "s", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "d", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "s held down to left_command", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "s" | |
}, | |
"to": [ | |
{ | |
"key_code": "left_command" | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "d" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "s held down to left_command", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "s", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "d", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "d held down to right_shift", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "d" | |
}, | |
"to": [ | |
{ | |
"key_code": "right_shift" | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "f" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "s plus option_l to F7", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "s", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f7" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "d plus command_r to colon", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "d", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "slash", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "d plus command_l to colon", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "d", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "d plus right_shift to F", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "d", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "d plus option_l to F7", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "d", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f8" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "f plus option_l to hat", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "f", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "close_bracket", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "f plus control_l to cmd_z", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "f", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "z", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "f plus command_l to cmd_z", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "f", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "z", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "f plus right_shift to Z", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "f", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "z", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "f to z", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "f" | |
}, | |
"to": [ | |
{ | |
"key_code": "z" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "f plus right_command to ?", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "f", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "hyphen", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "left_shift to q", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "left_shift" | |
}, | |
"to": [ | |
{ | |
"key_code": "q" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "left_shift plus option_l to F1", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "left_shift", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f1" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "left_shift plus command_l to command+q", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "left_shift", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "q", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "left_shift plus command_r to ´", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "left_shift", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "equal_sign", | |
"modifiers": "left_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "left_shift plus right_shift to Q", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "left_shift", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "q", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "< to g", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "grave_accent_and_tilde" | |
}, | |
"to": [ | |
{ | |
"key_code": "g" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "graveaccent plus option_l to F2", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "grave_accent_and_tilde", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f2" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "grave_accent_and_tilde plus command_l to command+g", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "grave_accent_and_tilde", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "g", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "grave_accent_and_tilde plus command_r to ;", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "grave_accent_and_tilde", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "comma", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "grave_accent_and_tilde plus control to C-g", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "grave_accent_and_tilde", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "g", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "grave_accent_and_tilde plus right_shift to G", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "grave_accent_and_tilde", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "g", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "z to c", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "z" | |
}, | |
"to": [ | |
{ | |
"key_code": "c" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "z plus option_l to F3", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "z", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f3" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "z plus command_l to command+c", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "z", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "c", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "z plus left_control to cntrl-c", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "z", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "c", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "z plus command_r to *", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "z", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "backslash", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description ": "z plus right_shift to C", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "z", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "c", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_5 held down to left control", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_5" | |
}, | |
"to": [ | |
{ | |
"key_code": "left_control" | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "j" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_6 held down to left_command", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_6" | |
}, | |
"to": [ | |
{ | |
"key_code": "left_command" | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "k" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "x to v", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "x" | |
}, | |
"to": [ | |
{ | |
"key_code": "v" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "x plus option_l to F4", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "x", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f4" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "x plus control_l to control+v", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "x", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "v", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "x plus command_l to command+v", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "x", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "v", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "x plus command_r to |", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "x", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "7", | |
"modifiers": "left_option" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "x plus right_shift to V", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "x", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "v", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "c to b", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "c" | |
}, | |
"to": [ | |
{ | |
"key_code": "b" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "c plus option_l to F5", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "c", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "f5" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "c plus command_l to command+b", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "c", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "b", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "c plus command_r to /", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "c", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "7", | |
"modifiers": "left_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "c plus left_control to cntrl-b", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "c", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "b", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "c plus right_shift to B", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "c", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "b", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_1 to n", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_1" | |
}, | |
"to": [ | |
{ | |
"key_code": "n" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_1 plus option_l to 1", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_1", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "1" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_1 plus command_l to command+n", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_1", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "n", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_1 plus command_r to ]", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_1", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "8", | |
"modifiers": "left_option" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_1 plus left_control to cntrl-n", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_1", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "n", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_1 plus right_shift to N", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_1", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "n", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_2 to m", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_2" | |
}, | |
"to": [ | |
{ | |
"key_code": "m" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_2 plus option_l to 2", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_2", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "2" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_2 plus command_l to command+m", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_2", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "m", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_2 plus command_r to ]", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_2", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "9", | |
"modifiers": "left_option" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_2 plus left_control to cntrl-m", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_2", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "m", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_2 plus right_shift to M", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_2", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "m", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_3 to y", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_3" | |
}, | |
"to": [ | |
{ | |
"key_code": "y" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_3 plus option_l to 3", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_3", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "3" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_3 plus command_l to command+y", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_3", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "y", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_3 plus command_r to <", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_3", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "grave_accent_and_tilde" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_3 plus left_control to cntrl-y", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_3", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "y", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_3 plus right_shift to Y", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_3", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "y", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_enter to p", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_enter" | |
}, | |
"to": [ | |
{ | |
"key_code": "p" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_enter plus option_l to -", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_enter", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "slash" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_enter plus command_l to command+p", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_enter", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "p", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_enter plus command_r to -", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_enter", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "grave_accent_and_tilde", | |
"modifiers": "left_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_enter plus left_control to cntrl-p", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_enter", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "p", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_enter plus right_shift to P", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_enter", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "p", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_4 held down to right shift", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_4" | |
}, | |
"to": [ | |
{ | |
"key_code": "right_shift" | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "h" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_4 plus option_l to hat", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_4", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "4" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_4 plus command_l to command+h", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_4", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "h", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_4 plus command_r to (", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_4", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "8", | |
"modifiers": "left_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_4 plus left_control to cntrl-h", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_4", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "h", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_4 plus right_shift to H", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_4", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "h", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_5 to j", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_5" | |
}, | |
"to": [ | |
{ | |
"key_code": "j" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_5 plus option_l to hat", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_5", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "5" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_5 plus command_l to command+j", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_5", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "j", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_5 plus command_r to )", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_5", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "9", | |
"modifiers": "left_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_5 plus left_control to cntrl-j", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_5", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "j", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_5 plus right_shift to J", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_5", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "j", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_6 to k", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_6" | |
}, | |
"to": [ | |
{ | |
"key_code": "k" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_6 plus option_l to hat", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_6", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "6" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_6 plus command_l to command+k", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_6", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "k", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_6 plus command_r to {", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_6", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "8", | |
"modifiers": [ | |
"left_shift", | |
"left_option" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_6 plus left_control to cntrl-k", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_6", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "k", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_6 plus right_shift to K", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_6", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "k", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_plus plus right_shift to K", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_plus", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "l", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_plus plus right_command to }", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_plus", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "9", | |
"modifiers": [ | |
"right_shift", | |
"left_option" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_plus plus left_option to enter", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_plus", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "return_or_enter" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_7 to u", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_7" | |
}, | |
"to": [ | |
{ | |
"key_code": "u" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_7 plus option_l to hat", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_7", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "7" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_7 plus command_l to command+u", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_7", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_7 plus command_r to #", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_7", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "3", | |
"modifiers": [ | |
"left_shift" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_7 plus left_control to cntrl-u", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_7", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_7 plus right_shift to U", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_7", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_8 to i", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_8" | |
}, | |
"to": [ | |
{ | |
"key_code": "i" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_8 plus option_l to hat", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_8", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "8" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_8 plus command_l to command+i", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_8", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "i", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_8 plus command_r to $", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_8", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "4", | |
"modifiers": [ | |
"left_shift" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_8 plus left_control to cntrl-i", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_8", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "i", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_8 plus right_shift to I", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_8", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "i", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_9 to o", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_9" | |
}, | |
"to": [ | |
{ | |
"key_code": "o" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_9 plus option_l to hat", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_9", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "9" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_9 plus command_l to command+o", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_9", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "o", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_9 plus command_r to $", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_9", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "5", | |
"modifiers": [ | |
"left_shift" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_9 plus left_control to cntrl-o", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_9", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "o", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_9 plus right_shift to O", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_9", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "o", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_hyphen to x", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_hyphen" | |
}, | |
"to": [ | |
{ | |
"key_code": "x" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_hyphen plus option_l to hat", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_hyphen", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "hyphen" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_hyphen plus command_l to command+x", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_hyphen", | |
"modifiers": { | |
"mandatory": "left_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "x", | |
"modifiers": "left_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_hyphen plus command_r to %", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_hyphen", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "6", | |
"modifiers": [ | |
"left_shift" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_hyphen plus left_control to cntrl-x", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_hyphen", | |
"modifiers": { | |
"mandatory": "left_control" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "x", | |
"modifiers": "left_control" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"Description": "keypad_hyphen plus right_shift to X", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_hyphen", | |
"modifiers": { | |
"mandatory": "right_shift" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "x", | |
"modifiers": "right_shift" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_equals to backspace", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_equal_sign" | |
}, | |
"to": [ | |
{ | |
"key_code": "backslash" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_equals and right_shift and right_option to backspace", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_equal_sign", | |
"modifiers": { | |
"mandatory": "right_command" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "7", | |
"modifiers": [ | |
"right_shift", | |
"left_option" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_equals plus left_option to ~", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_equal_sign", | |
"modifiers": { | |
"mandatory": "left_option" | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "close_bracket", | |
"modifiers": [ | |
"left_option" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "keypad_slash to @", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_slash" | |
}, | |
"to": [ | |
{ | |
"key_code": "delete_or_backspace" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"manipulators": [ | |
{ | |
"description": "Change space to option_l.", | |
"from": { | |
"key_code": "spacebar", | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_option", | |
"modifiers": [] | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "spacebar" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"manipulators": [ | |
{ | |
"description": "Change right_arrow to right_command.", | |
"from": { | |
"key_code": "right_arrow" | |
}, | |
"to": [ | |
{ | |
"key_code": "right_command" | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "escape" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"manipulators": [ | |
{ | |
"description": "Change keypad_plus to command+option+control+shift.", | |
"from": { | |
"key_code": "keypad_plus" | |
}, | |
"to": [ | |
{ | |
"key_code": "right_shift", | |
"modifiers": [ | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "l" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open chrome", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_7", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /Applications/Brave\\ Browser.app" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open iTerm2", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_8", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /Applications/iTerm.app" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open emacs", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_9", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /usr/local/opt/emacs-mac/Emacs.app/" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open preview", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_6", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /System/Applications/Previews.app" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open dash", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_1", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /Applications/Dash.app" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open ibooks", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_2", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /Applications/books.app" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open preview", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_3", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /System/Applications/Preview.app" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open slack", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_7", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /Applications/Slack.app" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open preview", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "keypad_9", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"shell_command": "open /Applications/Preview.app" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Open developer console", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "f15" | |
}, | |
"to": [ | |
{ | |
"key_code": "j", | |
"modifiers": [ | |
"right_option", | |
"right_command" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
}, | |
"devices": [ | |
{ | |
"disable_built_in_keyboard_if_exists": false, | |
"fn_function_keys": [], | |
"identifiers": { | |
"is_keyboard": true, | |
"is_pointing_device": false, | |
"product_id": 610, | |
"vendor_id": 1452 | |
}, | |
"ignore": false, | |
"manipulate_caps_lock_led": true, | |
"simple_modifications": [] | |
}, | |
{ | |
"disable_built_in_keyboard_if_exists": false, | |
"fn_function_keys": [], | |
"identifiers": { | |
"is_keyboard": true, | |
"is_pointing_device": false, | |
"product_id": 597, | |
"vendor_id": 1452 | |
}, | |
"ignore": false, | |
"manipulate_caps_lock_led": true, | |
"simple_modifications": [] | |
}, | |
{ | |
"disable_built_in_keyboard_if_exists": false, | |
"fn_function_keys": [], | |
"identifiers": { | |
"is_keyboard": true, | |
"is_pointing_device": false, | |
"product_id": 630, | |
"vendor_id": 1452 | |
}, | |
"ignore": true, | |
"manipulate_caps_lock_led": false, | |
"simple_modifications": [] | |
} | |
], | |
"fn_function_keys": [ | |
{ | |
"from": { | |
"key_code": "f1" | |
}, | |
"to": { | |
"key_code": "f1" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f2" | |
}, | |
"to": { | |
"key_code": "f2" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f3" | |
}, | |
"to": { | |
"key_code": "f3" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f4" | |
}, | |
"to": { | |
"key_code": "f4" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f5" | |
}, | |
"to": { | |
"key_code": "f5" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f6" | |
}, | |
"to": { | |
"key_code": "f6" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f7" | |
}, | |
"to": { | |
"key_code": "f7" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f8" | |
}, | |
"to": { | |
"key_code": "f8" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f9" | |
}, | |
"to": { | |
"key_code": "f9" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f10" | |
}, | |
"to": { | |
"key_code": "f10" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f11" | |
}, | |
"to": { | |
"key_code": "f11" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f12" | |
}, | |
"to": { | |
"key_code": "f12" | |
} | |
} | |
], | |
"name": "Default profile", | |
"one_to_many_mappings": {}, | |
"parameters": { | |
"delay_milliseconds_before_open_device": 1000 | |
}, | |
"selected": true, | |
"simple_modifications": [], | |
"standalone_keys": {}, | |
"virtual_hid_keyboard": { | |
"caps_lock_delay_milliseconds": 0, | |
"country_code": 0, | |
"keyboard_type": "ansi", | |
"mouse_key_xy_scale": 100, | |
"standalone_keys_delay_milliseconds": 200 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment