Skip to content

Instantly share code, notes, and snippets.

@foriequal0
Created November 9, 2018 00:42
Show Gist options
  • Save foriequal0/e057f4d798453e1169bb936be34e2c47 to your computer and use it in GitHub Desktop.
Save foriequal0/e057f4d798453e1169bb936be34e2c47 to your computer and use it in GitHub Desktop.
Karabiner-Elements
{
"title": "Disable Cmd-q for FireFox",
"rules": [
{
"description": "Disable Cmd-q for FireFox",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [ "org\\.mozilla\\.firefoxdeveloperedition" ],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "q",
"modifiers": { "mandatory": [ "left_command" ] }
},
"to": [ ],
"type": "basic"
}
]
}
]
}
{
"title": "Change right_command key to F19",
"rules": [
{
"description": "Change right_command key to F19 (Use it as language change key)",
"manipulators": [
{
"type": "basic",
"from": {"key_code": "right_command"},
"to": [{"key_code": "f19", "repeat": false}]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment