Skip to content

Instantly share code, notes, and snippets.

@kkumler
Created January 12, 2018 20:56
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 kkumler/a7ba5373afae5ada4021ea436a534bc6 to your computer and use it in GitHub Desktop.
Save kkumler/a7ba5373afae5ada4021ea436a534bc6 to your computer and use it in GitHub Desktop.
{
"title": "Change option+x to c, for when your c key breaks",
"rules": [
{
"description": "Change option+x to c",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [ "left_option" ],
"optional": [ "any" ]
}
},
"to": [
{
"key_code": "c"
}
]
},
{
"type": "basic",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [ "right_option" ],
"optional": [ "any" ]
}
},
"to": [
{
"key_code": "c"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment