Created
December 5, 2021 04:32
-
-
Save Loliver1224/b22f218e6155582f5ffdebf4dd868a5a to your computer and use it in GitHub Desktop.
Karabiner-Elements: Ctrl+j to Kana on PowerPoint for AquaSKK
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
"rules": [ | |
{ | |
"description": "Ctrl-j to Kana on PowerPoint", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.microsoft\\.Powerpoint" | |
], | |
"type": "frontmost_application_if" | |
} | |
], | |
"from": { | |
"key_code": "j", | |
"modifiers": { | |
"mandatory": [ | |
"control" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "j", | |
"modifiers": [ | |
"control", | |
"option" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment