Skip to content

Instantly share code, notes, and snippets.

@eswai
Last active May 6, 2023 12:40
Show Gist options
  • Save eswai/5d2f8ede134b13377776b540955a7a6f to your computer and use it in GitHub Desktop.
Save eswai/5d2f8ede134b13377776b540955a7a6f to your computer and use it in GitHub Desktop.
{
"title": "Unicode Hex Input Switcher",
"rules": [
{
"description": "Switchi Input Source between Unicode Hex Input ane Japanese",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["control"],
"optional": ["caps_lock", "option"]
}
},
"to": [
{
"select_input_source": {
"input_source_id": "^com\\.apple\\.keylayout\\.UnicodeHexInput$"
}
}
]
},
{
"type": "basic",
"from": {
"key_code": "j",
"modifiers": {
"mandatory": ["control"],
"optional": ["caps_lock", "option"]
}
},
"to": [
{
"select_input_source": {
"language": "^ja$"
}
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment