Skip to content

Instantly share code, notes, and snippets.

@silverbirder
Created April 10, 2020 02:15
Show Gist options
  • Save silverbirder/8d8884b9facc26eff69e2d244237d728 to your computer and use it in GitHub Desktop.
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]
{
"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