Mac 系統(tǒng)是 macOS High Sierra ,之前使用 Microsoft Remote Desktop Connection 時(shí),登錄到 Windows 中按 command + A 會(huì)全選(等同于按 control + A)。但是現(xiàn)在用 Microsoft Remote Desktop 時(shí),按 command + A 等同于按 Windows鍵 + A ,會(huì)出現(xiàn) Action Center 。請問如何在 Microsoft Remote Desktop 也實(shí)現(xiàn)按 command + A 等同于 按 control + A ?
1 回答

MM們
TA貢獻(xiàn)1886條經(jīng)驗(yàn) 獲得超2個(gè)贊
通過 Karabiner
參考 KE-complex_modifications ,在 ~/.config/karabiner/assets/complex_modifications 中添加如下的
remote_desktop.json 文件
{ "title": "Remote Desktop", "rules": [ { "description": "Remote Desktop Shortcuts", "manipulators": [ { "type": "basic", "from": { "key_code": "a", "modifiers": { "mandatory": [ "command" ], "optional": [ "any" ] } }, "to": [ { "key_code": "a", "modifiers": [ "left_control" ] } ], "conditions": [ { "type": "frontmost_application_if", "bundle_identifiers": [ "com\\.microsoft\\.rdc\\.osx\\.beta" ] } ] } ] } ] }
然后在 Karabiner-Elements 中添加這個(gè) Rule ,問題就解決了。
- 1 回答
- 0 關(guān)注
- 2476 瀏覽
添加回答
舉報(bào)
0/150
提交
取消