Skip to content

Instantly share code, notes, and snippets.

@qyen
Last active March 30, 2019 08:25
Show Gist options
  • Save qyen/5a2b9d2d5347b378856a3f8b21e2a96e to your computer and use it in GitHub Desktop.
Save qyen/5a2b9d2d5347b378856a3f8b21e2a96e to your computer and use it in GitHub Desktop.
JISキーボードのMacからRDPでWindowsに接続するとき109キーみたいにするやつ
{
"title": "RDP Keyboard modification from JP_mac to 109JP",
"rules": [
{
"description": "Rotate Left Command(Caps) Alt(Option) Windows(LeftCommand) key .",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_gui",
"modifiers": {
"optional": [
]
}
},
"to": [
{
"key_code": "left_control",
"modifiers": [ ]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com\\.microsoft\\.rdc\\.macos$"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "left_alt",
"modifiers": {
"optional": [
]
}
},
"to": [
{
"key_code": "left_gui",
"modifiers": [ ]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com\\.microsoft\\.rdc\\.macos$"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": [
]
}
},
"to": [
{
"key_code": "left_alt",
"modifiers": [ ]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com\\.microsoft\\.rdc\\.macos$"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment