Last active
September 3, 2019 02:24
-
-
Save bidah/f3091ddbd42545609cf2e42548709b0c to your computer and use it in GitHub Desktop.
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": "Change rk61 Keyboard escape behavior", | |
"rules": [ | |
{ | |
"description": "Change left option+escape to escape - 2", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "escape", | |
"modifiers": { | |
"mandatory": ["shift"], | |
"optional": ["caps_lock", "option"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "grave_accent_and_tilde" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "escape", | |
"modifiers": { | |
"mandatory": ["left_control"], | |
"optional": ["caps_lock", "option"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "grave_accent_and_tilde", | |
"modifiers": ["shift"] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment