Skip to content

Instantly share code, notes, and snippets.

@svend
Last active December 31, 2025 00:48
Show Gist options
  • Select an option

  • Save svend/9d99cb72780a6e75a9a8865569c590ab to your computer and use it in GitHub Desktop.

Select an option

Save svend/9d99cb72780a6e75a9a8865569c590ab to your computer and use it in GitHub Desktop.
karabiner.json
{
"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