Created
November 9, 2018 00:42
-
-
Save foriequal0/e057f4d798453e1169bb936be34e2c47 to your computer and use it in GitHub Desktop.
Karabiner-Elements
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": "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" | |
} | |
] | |
} | |
] | |
} |
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 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