Created
March 23, 2019 13:55
-
-
Save chengluyu/1f8b6b4f5f0fbd4912376864689eb126 to your computer and use it in GitHub Desktop.
Swap Command and Control When Using Microsoft Remote Desktop
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": "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