Skip to content

Instantly share code, notes, and snippets.

@hidsh
Created March 8, 2021 01:47
Show Gist options
  • Save hidsh/67b4d5050e6a76ee7e871f6e169db087 to your computer and use it in GitHub Desktop.
Save hidsh/67b4d5050e6a76ee7e871f6e169db087 to your computer and use it in GitHub Desktop.
Karabiner-Elements: my-setting for dual-roll R-CTRL + ESC
{
"title": "yax custom",
"rules": [
{
"description": "Post escape if right_control is pressed alone.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "right_control",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_control"
}
],
"to_if_alone": [
{
"key_code": "escape"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment