Skip to content

Instantly share code, notes, and snippets.

@radiocat
Last active December 13, 2020 04:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radiocat/f0a6f0653427f755a933c2315226b43c to your computer and use it in GitHub Desktop.
Save radiocat/f0a6f0653427f755a933c2315226b43c to your computer and use it in GitHub Desktop.
Swap command and control (for MRD Beta)
{
"title": "Remote Desktop (for Microsoft Remote Desktop Beta)",
"rules": [
{
"description": "Swap command and control (for MRD Beta)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_command"
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"com\\.microsoft\\.rdc\\.osx\\.beta"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "left_command",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_control"
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"com\\.microsoft\\.rdc\\.osx\\.beta"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "right_control",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_command"
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"com\\.microsoft\\.rdc\\.osx\\.beta"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "right_command",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_control"
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"com\\.microsoft\\.rdc\\.osx\\.beta"
]
}
]
}
]
}
]
}
@radiocat
Copy link
Author

Karabiner-ElementsのRemote DesktopカスタマイズをMicrosoft Remote Desktop Beta向けに変更したもの
https://ke-complex-modifications.pqrs.org/#remote-desktop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment