Skip to content

Instantly share code, notes, and snippets.

@bidah
Last active September 3, 2019 02:24
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 bidah/f3091ddbd42545609cf2e42548709b0c to your computer and use it in GitHub Desktop.
Save bidah/f3091ddbd42545609cf2e42548709b0c to your computer and use it in GitHub Desktop.
{
"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