Last active
December 31, 2025 00:48
-
-
Save svend/9d99cb72780a6e75a9a8865569c590ab to your computer and use it in GitHub Desktop.
karabiner.json
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
| { | |
| "description": "Rebind modifier keys for UTM", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^com\\.utmapp\\.UTM$" | |
| ], | |
| "type": "frontmost_application_if" | |
| }, | |
| { | |
| "identifiers": [ | |
| { "vendor_id": 1452 }, | |
| { "vendor_id": 76 }, | |
| { "is_built_in_keyboard": true } | |
| ], | |
| "type": "device_if" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "left_command", | |
| "modifiers": { "optional": ["any"] } | |
| }, | |
| "to": [{ "key_code": "left_control" }], | |
| "type": "basic" | |
| }, | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^com\\.utmapp\\.UTM$" | |
| ], | |
| "type": "frontmost_application_if" | |
| }, | |
| { | |
| "identifiers": [ | |
| { "vendor_id": 1452 }, | |
| { "vendor_id": 76 }, | |
| { "is_built_in_keyboard": true } | |
| ], | |
| "type": "device_if" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "right_command", | |
| "modifiers": { "optional": ["any"] } | |
| }, | |
| "to": [{ "key_code": "right_control" }], | |
| "type": "basic" | |
| }, | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^com\\.utmapp\\.UTM$" | |
| ], | |
| "type": "frontmost_application_if" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "caps_lock", | |
| "modifiers": { "optional": ["any"] } | |
| }, | |
| "to": [{ "key_code": "right_command" }], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment