Created
May 17, 2023 13:23
-
-
Save jorgelbg/7c1b2b384779df2ba76377140cd9e636 to your computer and use it in GitHub Desktop.
Remap the screenshot key to cmd+shift+8 (mapped to use Cleanshot)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Maps Screenshot key to another tool", | |
"rules": [ | |
{ | |
"description": "Screenshot to another tool", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "4", | |
"modifiers": { | |
"mandatory": [ | |
"left_command", | |
"left_shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "8", | |
"modifiers": [ | |
"left_command", | |
"left_shift" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment