Skip to content

Instantly share code, notes, and snippets.

@euclid1990
Created April 10, 2019 08:53
Show Gist options
  • Save euclid1990/0e052c49a54a14e6b5b7de10401d40d5 to your computer and use it in GitHub Desktop.
Save euclid1990/0e052c49a54a14e6b5b7de10401d40d5 to your computer and use it in GitHub Desktop.
Karabiner Complex Modification Rules
"rules": [
{
"description": "print_screen to command+shift+3",
"manipulators": [
{
"from": {
"key_code": "print_screen"
},
"to": [
{
"key_code": "3",
"modifiers": [
"left_command",
"left_shift"
]
}
],
"type": "basic"
}
]
},
{
"description": "shift+print_screen to command+shift+4",
"manipulators": [
{
"from": {
"key_code": "print_screen",
"modifiers": {
"optional": [
"left_shift",
"right_shift"
]
}
},
"to": [
{
"key_code": "4",
"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