Skip to content

Instantly share code, notes, and snippets.

@Loliver1224
Created December 5, 2021 04:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Loliver1224/b22f218e6155582f5ffdebf4dd868a5a to your computer and use it in GitHub Desktop.
Save Loliver1224/b22f218e6155582f5ffdebf4dd868a5a to your computer and use it in GitHub Desktop.
Karabiner-Elements: Ctrl+j to Kana on PowerPoint for AquaSKK
"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