Skip to content

Instantly share code, notes, and snippets.

@Sotalbireo
Last active February 19, 2019 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sotalbireo/ad9e23f5bc2e0d02b01763d7658b2677 to your computer and use it in GitHub Desktop.
Save Sotalbireo/ad9e23f5bc2e0d02b01763d7658b2677 to your computer and use it in GitHub Desktop.
Karabiner-Elements をインスコして `~/.config/karabiner/assets/complex_modifications` に突っ込む
{
"title": "Fn+CapsLockキーを英かなトグルにする",
"rules": [
{
"description": "US入力と、ことえりのひらがなをトグルする",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [
{
"select_input_source": {
"input_source_id": "^com\\.apple\\.inputmethod\\.Kotoeri\\.Japanese$"
}
}
],
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"language": "en"
}
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [
{
"select_input_source": {
"input_source_id": "^com\\.apple\\.keylayout\\.US$"
}
}
],
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"language": "ja"
}
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment