Created
April 10, 2020 02:15
-
-
Save silverbirder/8d8884b9facc26eff69e2d244237d728 to your computer and use it in GitHub Desktop.
karabiner elements complex modifications [eisu and kana to page up and down on microsoft remote desktop]
This file contains 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
{ | |
"title": "microsoft_remote_desktop", | |
"rules": [ | |
{ | |
"description": "eisuu and kana to page_down and page_up for microsoft_remote_desktop", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "japanese_eisuu" | |
}, | |
"to": { | |
"key_code": "page_down" | |
}, | |
"conditions": [ | |
{ | |
"type": "frontmost_application_if", | |
"bundle_identifiers": [ | |
"^com\\.microsoft\\.rdc\\.mac$" | |
] | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "japanese_kana" | |
}, | |
"to": { | |
"key_code": "page_up" | |
}, | |
"conditions": [ | |
{ | |
"type": "frontmost_application_if", | |
"bundle_identifiers": [ | |
"^com\\.microsoft\\.rdc\\.mac$" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment