Skip to content

Instantly share code, notes, and snippets.

@fyrebase
Last active June 7, 2022 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fyrebase/5e4c9c3d90b782b58b0ed17643585423 to your computer and use it in GitHub Desktop.
Save fyrebase/5e4c9c3d90b782b58b0ed17643585423 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "keypad_0",
"modifiers": {
"mandatory": [
"left_command",
"left_shift"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Add Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_option",
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "c"
},
"to": [
{
"modifiers": [
"left_option",
"left_command"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Text Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_shift",
"right_control"
]
}
},
"to": [
{
"key_code": "t"
}
]
},
{
"description": "Figma - Right Arrow → Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"description": "Figma - r → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "r"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - z → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "z"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - x → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "x"
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "keypad_0",
"modifiers": {
"mandatory": [
"left_command",
"left_shift"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Add Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_option",
"left_shift"
]
}
]
},
{
"description": "Figma - Ungroup Selection",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "g",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Break",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "b",
"modifiers": [
"left_command",
"left_option"
]
}
]
},
{
"description": "Figma - Destroy",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_control",
"right_shift"
]
}
},
"to": [
{
"key_code": "b",
"modifiers": [
"right_command",
"right_option",
"right_control",
"right_shift"
]
}
]
},
{
"description": "Figma - Command + Option",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "c"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Text Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_shift",
"right_control"
]
}
},
"to": [
{
"key_code": "t"
}
]
},
{
"description": "Figma - Right Arrow → Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"description": "Figma - r → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "r"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - z → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "z"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - x → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "x"
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "keypad_0",
"modifiers": {
"mandatory": [
"left_command",
"left_shift"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Left Option → Command + Option or Option if alone",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_option"
],
"repeat": false
}
]
},
{
"description": "Figma - Add Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Text Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_shift",
"right_control"
]
}
},
"to": [
{
"key_code": "t"
}
]
},
{
"description": "Figma - Right Arrow → Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"description": "Figma - r → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "r"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - z → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "z"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - x → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "x"
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "0",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Left Option → Command + Option or Option if alone",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_command"
],
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "left_option",
"repeat": false
}
]
},
{
"description": "Figma - Add Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_option"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Text Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_shift",
"right_control"
]
}
},
"to": [
{
"key_code": "t"
}
]
},
{
"description": "Figma - Right Arrow → Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"description": "Figma - r → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "r"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - z → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "z"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - x → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "x"
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "keypad_0",
"modifiers": {
"mandatory": [
"left_command",
"left_shift"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Add Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_option",
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "c"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Text Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_shift",
"right_control"
]
}
},
"to": [
{
"key_code": "t"
}
]
},
{
"description": "Figma - Right Arrow → Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"description": "Figma - r → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "r"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - z → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "z"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - x → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "x"
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Left Option → Command + Option or Option if alone",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_command"
],
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "left_option",
"repeat": false
}
]
},
{
"description": "Figma - Add Auto Lyout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Lyout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_option"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Text Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_shift",
"right_control"
]
}
},
"to": [
{
"key_code": "t"
}
]
},
{
"description": "Figma - Right Arrow → Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"description": "Figma - r → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "r"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - z → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "z"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - x → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "x"
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "keypad_0",
"modifiers": {
"mandatory": [
"left_command",
"left_shift"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Add Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_option",
"left_shift"
]
}
]
},
{
"description": "Figma - Ungroup Selection",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "g",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Break",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "b",
"modifiers": [
"left_command",
"left_option"
]
}
]
},
{
"description": "Figma - Destroy",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "b",
"modifiers": [
"right_command",
"right_option",
"right_control",
"right_shift"
]
}
]
},
{
"description": "Figma - Command + Option",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "c"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Text Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_shift",
"right_control"
]
}
},
"to": [
{
"key_code": "t"
}
]
},
{
"description": "Figma - Right Arrow → Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"description": "Figma - r → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "r"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - z → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "z"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - x → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "x"
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "keypad_0",
"modifiers": {
"mandatory": [
"left_command",
"left_shift"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Left Option → Command + Option or Option if alone",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_option"
],
"repeat": false
}
]
},
{
"description": "Figma - Add Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Text Tool",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_command",
"right_option",
"right_shift",
"right_control"
]
}
},
"to": [
{
"key_code": "t"
}
]
},
{
"description": "Figma - Right Arrow → Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"description": "Figma - r → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "r"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - z → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "z"
},
"to": [
{
"key_code": "out"
}
]
},
{
"description": "Figma - x → OUT",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "x"
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Spacebar",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "spacebar"
}
]
},
{
"description": "Figma - Left Option → Command + Option or Option if alone",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_command"
],
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "left_option",
"repeat": false
}
]
},
{
"description": "Figma - Add Auto Lyout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Lyout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_option"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
},
{
"description": "Figma - Command",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "spacebar"
},
"to": [
{
"modifiers": [
"left_command"
]
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Spacebar",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"key_code": "spacebar"
}
]
},
{
"description": "Figma - Left Option → Command + Option or Option if alone",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"modifiers": [
"left_command"
],
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "left_option",
"repeat": false
}
]
},
{
"description": "Figma - Add Auto Lyout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Lyout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_option"
]
}
]
},
{
"description": "Figma - X Auto - Padding / Spacing",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift",
"left_control"
]
}
]
},
{
"description": "Figma - Command + Option + d → Shift + Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - d → Tab",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "d"
},
"to": [
{
"key_code": "tab"
}
]
},
{
"description": "Figma - X Auto - Toggle Direction",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift",
"left_command"
]
}
]
},
{
"description": "Figma - Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "return_or_enter"
}
]
},
{
"description": "Figma - Shift + Enter",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - e → Option + l",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "e"
},
"to": [
{
"key_code": "l",
"modifiers": [
"left_option"
]
}
]
},
{
"description": "Figma - Frame",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "f"
}
]
},
{
"description": "Figma - Move",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "v"
}
]
}
]
}
]
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 832,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 34304,
"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": 591,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "right_control"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 67,
"vendor_id": 5426
},
"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": 6933,
"vendor_id": 6940
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "application"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 591,
"vendor_id": 1452
},
"ignore": true,
"manipulate_caps_lock_led": true,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": [
{
"consumer_key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": [
{
"consumer_key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": [
{
"consumer_key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": [
{
"consumer_key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": [
{
"consumer_key_code": "fast_forward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": [
{
"consumer_key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": [
{
"consumer_key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": [
{
"consumer_key_code": "volume_increment"
}
]
}
],
"name": "Default",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 0,
"indicate_sticky_modifier_keys_state": true,
"mouse_key_xy_scale": 100
}
}
]
}
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

This file has been truncated, but you can view the full file.
{
"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": "Global - Right Shift + Caps Lock → Caps Lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "caps_lock",
"repeat": false
}
],
"type": "basic"
}
]
},
{
"manipulators": [
{
"description": "Global - Caps Lock → Hyper",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"modifiers": [
"right_command",
"right_control",
"right_option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Global - Delete",
"manipulators": [
{
"description": "Global - Command + Delete → Forward Delete Word",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"right_command",
"right_control",
"right_shift",
"right_option"
]
}
},
"to": [
{
"key_code": "delete_forward",
"modifiers": [
"left_option"
],
"repeat": true
}
],
"type": "basic"
},
{
"description": "Global - Shift + Delete → Forward Delete Character",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "delete_forward",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Global - Quit Application - CMD + Q Twice",
"manipulators": [
{
"conditions": [
{
"name": "command-q",
"type": "variable_if",
"value": 1
}
],
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "q",
"modifiers": "left_command"
}
],
"type": "basic"
},
{
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"set_variable": {
"name": "command-q",
"value": 1
}
}
],
"to_delayed_action": {
"to_if_canceled": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
],
"to_if_invoked": [
{
"set_variable": {
"name": "command-q",
"value": 0
}
}
]
},
"type": "basic"
}
]
},
{
"description": "Figma",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - Option → Enter - Exclude Razer Tartus",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_option",
"repeat": true
}
],
"to_if_alone": [
{
"key_code": "return_or_enter",
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Tidy Up",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "t",
"modifiers": [
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Vertically",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Centre Horizontally",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"left_option"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Components Panel",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "i",
"modifiers": [
"shift"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
},
{
"type": "device_unless",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
}
],
"description": "Figma - XAuto Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Horizontal",
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "5",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Stretch Vertical",
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_control"
]
}
},
"to": [
{
"key_code": "6",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Horizontal",
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - XAuto Space Between Vertical",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command",
"left_option"
]
}
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_option",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"description": "Figma - Copy Link",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
],
"type": "basic"
},
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "keypad_0",
"modifiers": {
"mandatory": [
"left_command",
"left_shift"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "Pika",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - A → Command + D (Foreground Colour)",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - S → Command + Shift + D (Background Colour)",
"from": {
"key_code": "s"
},
"to": [
{
"key_code": "d",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + A → Command + C (Copy Foreground Colour)",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
],
"repeat": true
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.superhighfives\\.Pika$"
],
"type": "frontmost_application_if"
}
],
"description": "Pika - Left Shift + Left Option + S → Command + Shift + C (Copy Background Colour)",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"left_shift",
"left_option"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command",
"left_shift"
],
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Figma - Razer Tartus",
"manipulators": [
{
"description": "Figma - Zoom 100% - Zooms node first to centre view",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "up_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
],
"to_after_key_up": [
{
"key_code": "0",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Fit",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "down_arrow"
},
"to": [
{
"key_code": "1",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Zoom Node",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "2",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Copy Link",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "5"
},
"to": [
{
"key_code": "7",
"modifiers": [
"left_command",
"left_option",
"left_shift",
"left_control"
],
"repeat": false
}
]
},
{
"description": "Figma - Undo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f"
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command"
]
}
]
},
{
"description": "Figma - Redo",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "z",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Add Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q"
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_shift"
]
}
]
},
{
"description": "Figma - Remove Auto Layout",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_option",
"left_shift"
]
}
]
},
{
"description": "Figma - Ungroup Selection",
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"product_id": 580,
"vendor_id": 5426
},
{
"product_id": 555,
"vendor_id": 5426
}
]
},
{
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"left_option",
"left_command"
]
}
},
"to": [
{
"key_code": "g",
"modifiers": [
"left_command",
"left_shift"
]
}
]
},
{
"description": "Figma - Break",
"conditions": [
{
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment