Last active
April 13, 2021 05:47
-
-
Save juno/9170e208ac73cb8b74dad909bb4b6081 to your computer and use it in GitHub Desktop.
My Karabiner Elements configuration
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
{ | |
"title": "My Customize for Dvorak", | |
"rules": [ | |
{ | |
"description": "Ctrl+i to Tab", | |
"manipulators": [ | |
{ | |
"description": "Dvorakでは物理キーgがiとなる", | |
"type": "basic", | |
"from": { | |
"key_code": "g", | |
"modifiers": { | |
"mandatory": [ "left_control" ], | |
"optional": [ "any" ] | |
} | |
}, | |
"to": [ { "key_code": "tab" } ], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "Ctrl+m to Enter", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "m", | |
"modifiers": { | |
"mandatory": ["left_control"], | |
"optional": [ "any" ] | |
} | |
}, | |
"to": { "key_code": "return_or_enter" }, | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "Ctrl+n/p/f/b to Arrow keys", | |
"manipulators": [ | |
{ | |
"description": "Ctrl+b to Left Arrow", | |
"type": "basic", | |
"from": { | |
"key_code": "n", | |
"modifiers": { | |
"mandatory": [ "left_control" ], | |
"optional": [ "any" ] | |
} | |
}, | |
"to": [ { "key_code": "left_arrow" } ], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
] | |
} | |
] | |
}, | |
{ | |
"description": "Ctrl+n to Down Arrow", | |
"type": "basic", | |
"from": { | |
"key_code": "l", | |
"modifiers": { | |
"mandatory": [ "left_control" ], | |
"optional": [ "any" ] | |
} | |
}, | |
"to": [ { "key_code": "down_arrow" } ], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
] | |
} | |
] | |
}, | |
{ | |
"description": "Ctrl+p to Up Arrow", | |
"type": "basic", | |
"from": { | |
"key_code": "r", | |
"modifiers": { | |
"mandatory": [ "left_control" ], | |
"optional": [ "any" ] | |
} | |
}, | |
"to": [ { "key_code": "up_arrow" } ], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
] | |
} | |
] | |
}, | |
{ | |
"description": "Ctrl+f to Right Arrow", | |
"type": "basic", | |
"from": { | |
"key_code": "y", | |
"modifiers": { | |
"mandatory": [ "left_control" ], | |
"optional": [ "any" ] | |
} | |
}, | |
"to": [ { "key_code": "right_arrow" } ], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "Option+f/bで単語単位の移動", | |
"manipulators": [ | |
{ | |
"description": "Dvorakでは物理キーnがbとなる", | |
"type": "basic", | |
"from": { | |
"key_code": "n", | |
"modifiers": { | |
"mandatory": [ "left_alt" ], | |
"optional": [ "any" ] | |
} | |
}, | |
"to": { | |
"key_code": "left_arrow", | |
"modifiers": "left_alt" | |
}, | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
] | |
} | |
] | |
}, | |
{ | |
"description": "Dvorakでは物理キーyがfとなる", | |
"type": "basic", | |
"from": { | |
"key_code": "y", | |
"modifiers": { | |
"mandatory": [ "left_alt" ], | |
"optional": [ "any" ] | |
} | |
}, | |
"to": { | |
"key_code": "right_arrow", | |
"modifiers": "left_alt" | |
}, | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
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
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"parameters": { | |
"basic.simultaneous_threshold_milliseconds": 50, | |
"basic.to_delayed_action_delay_milliseconds": 500, | |
"basic.to_if_alone_timeout_milliseconds": 1000, | |
"basic.to_if_held_down_threshold_milliseconds": 500, | |
"mouse_motion_to_scroll.speed": 100 | |
}, | |
"rules": [ | |
{ | |
"description": "コマンドキーを単体で押したときに、英数・かなキーを送信する。(左コマンドキーは英数、右コマンドキーはかな) (rev 3)", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "left_command", | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"parameters": { | |
"basic.to_if_held_down_threshold_milliseconds": 100 | |
}, | |
"to": [ | |
{ | |
"key_code": "left_command", | |
"lazy": true | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "japanese_eisuu" | |
} | |
], | |
"to_if_held_down": [ | |
{ | |
"key_code": "left_command" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "right_command", | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"parameters": { | |
"basic.to_if_held_down_threshold_milliseconds": 100 | |
}, | |
"to": [ | |
{ | |
"key_code": "right_command", | |
"lazy": true | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "japanese_kana" | |
} | |
], | |
"to_if_held_down": [ | |
{ | |
"key_code": "right_command" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Ctrl+i to Tab", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
], | |
"type": "frontmost_application_unless" | |
} | |
], | |
"description": "Dvorakでは物理キーgがiとなる", | |
"from": { | |
"key_code": "g", | |
"modifiers": { | |
"mandatory": [ | |
"left_control" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "tab" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Ctrl+m to Enter", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
], | |
"type": "frontmost_application_unless" | |
} | |
], | |
"from": { | |
"key_code": "m", | |
"modifiers": { | |
"mandatory": [ | |
"left_control" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": { | |
"key_code": "return_or_enter" | |
}, | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Ctrl+n/p/f/b to Arrow keys", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
], | |
"type": "frontmost_application_unless" | |
} | |
], | |
"description": "Ctrl+b to Left Arrow", | |
"from": { | |
"key_code": "n", | |
"modifiers": { | |
"mandatory": [ | |
"left_control" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_arrow" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
], | |
"type": "frontmost_application_unless" | |
} | |
], | |
"description": "Ctrl+n to Down Arrow", | |
"from": { | |
"key_code": "l", | |
"modifiers": { | |
"mandatory": [ | |
"left_control" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "down_arrow" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
], | |
"type": "frontmost_application_unless" | |
} | |
], | |
"description": "Ctrl+p to Up Arrow", | |
"from": { | |
"key_code": "r", | |
"modifiers": { | |
"mandatory": [ | |
"left_control" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "up_arrow" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
], | |
"type": "frontmost_application_unless" | |
} | |
], | |
"description": "Ctrl+f to Right Arrow", | |
"from": { | |
"key_code": "y", | |
"modifiers": { | |
"mandatory": [ | |
"left_control" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "right_arrow" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Option+f/bで単語単位の移動", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
], | |
"type": "frontmost_application_unless" | |
} | |
], | |
"description": "Dvorakでは物理キーnがbとなる", | |
"from": { | |
"key_code": "n", | |
"modifiers": { | |
"mandatory": [ | |
"left_alt" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": { | |
"key_code": "left_arrow", | |
"modifiers": "left_alt" | |
}, | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.github\\.atom", | |
"^com\\.googlecode\\.iterm2" | |
], | |
"type": "frontmost_application_unless" | |
} | |
], | |
"description": "Dvorakでは物理キーyがfとなる", | |
"from": { | |
"key_code": "y", | |
"modifiers": { | |
"mandatory": [ | |
"left_alt" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": { | |
"key_code": "right_arrow", | |
"modifiers": "left_alt" | |
}, | |
"type": "basic" | |
} | |
] | |
} | |
] | |
}, | |
"devices": [ | |
{ | |
"disable_built_in_keyboard_if_exists": false, | |
"fn_function_keys": [], | |
"identifiers": { | |
"is_keyboard": true, | |
"is_pointing_device": false, | |
"product_id": 626, | |
"vendor_id": 1452 | |
}, | |
"ignore": false, | |
"manipulate_caps_lock_led": true, | |
"simple_modifications": [ | |
{ | |
"from": { | |
"key_code": "caps_lock" | |
}, | |
"to": { | |
"key_code": "left_control" | |
} | |
} | |
] | |
} | |
], | |
"fn_function_keys": [ | |
{ | |
"from": { | |
"key_code": "f1" | |
}, | |
"to": { | |
"consumer_key_code": "display_brightness_decrement" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f2" | |
}, | |
"to": { | |
"consumer_key_code": "display_brightness_increment" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f3" | |
}, | |
"to": { | |
"key_code": "mission_control" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f4" | |
}, | |
"to": { | |
"key_code": "launchpad" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f5" | |
}, | |
"to": { | |
"key_code": "illumination_decrement" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f6" | |
}, | |
"to": { | |
"key_code": "illumination_increment" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f7" | |
}, | |
"to": { | |
"consumer_key_code": "rewind" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f8" | |
}, | |
"to": { | |
"consumer_key_code": "play_or_pause" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f9" | |
}, | |
"to": { | |
"consumer_key_code": "fastforward" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f10" | |
}, | |
"to": { | |
"consumer_key_code": "mute" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f11" | |
}, | |
"to": { | |
"consumer_key_code": "volume_decrement" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "f12" | |
}, | |
"to": { | |
"consumer_key_code": "volume_increment" | |
} | |
} | |
], | |
"name": "Default profile", | |
"parameters": { | |
"delay_milliseconds_before_open_device": 1000 | |
}, | |
"selected": true, | |
"simple_modifications": [ | |
{ | |
"from": { | |
"key_code": "caps_lock" | |
}, | |
"to": { | |
"key_code": "left_control" | |
} | |
} | |
], | |
"virtual_hid_keyboard": { | |
"caps_lock_delay_milliseconds": 0, | |
"country_code": 0, | |
"keyboard_type": "ansi", | |
"mouse_key_xy_scale": 100 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment