Skip to content

Instantly share code, notes, and snippets.

@jflattery
Created April 14, 2020 17:02
Show Gist options
  • Select an option

  • Save jflattery/9a88e66c5da337f77c9db350c57e5097 to your computer and use it in GitHub Desktop.

Select an option

Save jflattery/9a88e66c5da337f77c9db350c57e5097 to your computer and use it in GitHub Desktop.
Karabiner Complex Modification - Maps PrtSc(print_screen) to MacOS Capture Window Shortcut
{
"title": "Maps PrtSc to Screenshot Window",
"rules": [
{
"description": "print_screen to Screenshot Window",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "print_screen"
},
"to": [
{
"key_code": "4",
"modifiers": [
"left_command",
"left_shift"
]
}
],
"to_after_key_up": [
{
"repeat": true,
"key_code": "spacebar"
}
]
}
]
}
]
}
@jflattery
Copy link
Author

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