Skip to content

Instantly share code, notes, and snippets.

@jorgelbg
Created May 17, 2023 13:23
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 jorgelbg/7c1b2b384779df2ba76377140cd9e636 to your computer and use it in GitHub Desktop.
Save jorgelbg/7c1b2b384779df2ba76377140cd9e636 to your computer and use it in GitHub Desktop.
Remap the screenshot key to cmd+shift+8 (mapped to use Cleanshot)
{
"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