Created
April 10, 2019 08:53
-
-
Save euclid1990/0e052c49a54a14e6b5b7de10401d40d5 to your computer and use it in GitHub Desktop.
Karabiner Complex Modification Rules
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
"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