Created
October 10, 2020 21:38
-
-
Save kuntau/ab01409524c0e7d6708a46e2e2f5aed6 to your computer and use it in GitHub Desktop.
My Karabiner-Elements Config
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": "Kuntau Left Ctrl Hyper Mods", | |
"rules": [ | |
{ | |
"description": "F20 : (HYPER) SHIFT+COMMAND+OPTION+CONTROL or ESCAPE (If Alone)", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "f20", | |
"modifiers": { | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_shift", | |
"modifiers": ["left_command", "left_control", "left_option"] | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "escape" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"description": "Avoid starting sysdiagnose with the built-in macOS shortcut cmd+shift+option+ctrl+,", | |
"from": { | |
"key_code": "comma", | |
"modifiers": { | |
"mandatory": ["command", "shift", "option", "control"] | |
} | |
}, | |
"to": [], | |
"type": "basic" | |
}, | |
{ | |
"description": "Avoid starting sysdiagnose with the built-in macOS shortcut cmd+shift+option+ctrl+.", | |
"from": { | |
"key_code": "period", | |
"modifiers": { | |
"mandatory": ["command", "shift", "option", "control"] | |
} | |
}, | |
"to": [], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"description": "Avoid starting sysdiagnose with the built-in macOS shortcut cmd+shift+option+ctrl+/", | |
"key_code": "slash", | |
"modifiers": { | |
"mandatory": ["command", "shift", "option", "control"] | |
} | |
}, | |
"to": [], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "HYPER + h/j/k/l == Arrow Keys", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "k", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "up_arrow" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "h", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_arrow" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "j", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "down_arrow" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "l", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "right_arrow" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "semicolon", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "right_arrow", | |
"modifiers": ["left_command"] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "HYPER + a/e == Home/End", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "a", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "home" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "e", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift", | |
"left_command", | |
"left_control", | |
"left_option" | |
], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "end" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment