Skip to content

Instantly share code, notes, and snippets.

@chengluyu
Created March 23, 2019 13:55
Swap Command and Control When Using Microsoft Remote Desktop
{
"description": "Happy Remote Desktop",
"manipulators": [
{
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_control"
}
],
"type": "basic",
"conditions": [
{
"bundle_identifiers": [
"^com\\.microsoft\\.rdc\\.macos$"
],
"type": "frontmost_application_if"
}
]
},
{
"from": {
"key_code": "left_control"
},
"to": [
{
"key_code": "right_command"
}
],
"type": "basic",
"conditions": [
{
"bundle_identifiers": [
"^com\\.microsoft\\.rdc\\.macos$"
],
"type": "frontmost_application_if"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment