Skip to content

Instantly share code, notes, and snippets.

@chrisfsmith
Created June 27, 2017 02:05
Show Gist options
  • Save chrisfsmith/4e92154e692b991ba76676967e8422c7 to your computer and use it in GitHub Desktop.
Save chrisfsmith/4e92154e692b991ba76676967e8422c7 to your computer and use it in GitHub Desktop.
Karabiner Elements config for CAPS ==> HYPER
{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"rules": [
{
"manipulators": [
{
"description": "Change caps_lock to hyper.",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_control",
"modifiers": [
"left_command",
"left_option"
]
}
],
"to_if_alone": [
{
"key_code": "caps_lock"
}
],
"type": "basic"
}
]
}
]
},
"name": "Profile",
"selected": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment