Skip to content

Instantly share code, notes, and snippets.

@sgur
Created September 20, 2017 04:55
Show Gist options
  • Save sgur/f8f231a618ee954545c0738db457a6be to your computer and use it in GitHub Desktop.
Save sgur/f8f231a618ee954545c0738db457a6be to your computer and use it in GitHub Desktop.
Locate under ~/.config/karabiner/assets/complex_modifications/
{
"title": "AquaSKK on iTerm2 / Terminal.app",
"rules": [
{
"description": "Change left_ctrl + j to Hiragana on iTerm2",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.googlecode\\.iterm2$",
"^com\\.apple\\.Terminal$"
],
"type": "frontmost_application_if"
}
],
"type": "basic",
"from": {
"key_code": "j",
"modifiers": {
"mandatory": ["left_control"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "japanese_kana",
"modifiers": [
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment