Skip to content

Instantly share code, notes, and snippets.

@jbcrestot
Created July 16, 2020 19:46
Show Gist options
  • Save jbcrestot/7d1867839b8ef1018e1c3ba2ae2f6392 to your computer and use it in GitHub Desktop.
Save jbcrestot/7d1867839b8ef1018e1c3ba2ae2f6392 to your computer and use it in GitHub Desktop.
This file is a karabiner config to override some keys (important for dev) form Keychrone v6 keyboard
{
"title": "Keychrone K6 for dev",
"rules": [
{
"description": "1 : open_bracket = <",
"manipulators": [
{
"from": {
"key_code": "open_bracket"
},
"to": [
{
"key_code": "grave_accent_and_tilde"
}
],
"type": "basic"
}
]
},
{
"description": "2 + shift + open_bracket = >",
"manipulators": [
{
"from": {
"key_code": "open_bracket",
"modifiers": {
"mandatory": ["shift"],
"optional": ["caps_lock"]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": ["left_shift"]
}
],
"type": "basic"
}
]
},
{
"description": "3: quote = ^",
"manipulators": [
{
"from": {
"key_code": "quote"
},
"to": [
{
"key_code": "open_bracket"
}
],
"type": "basic"
}
]
},
{
"description": "4: command + quote = @",
"manipulators": [
{
"from": {
"key_code": "quote",
"modifiers": {
"mandatory": ["command"],
"optional": ["caps_lock"]
}
},
"to": [
{
"key_code": "backslash",
"modifiers": ["option"]
}
],
"type": "basic"
}
]
},
{
"description": "4 bis: option + quote = @",
"manipulators": [
{
"from": {
"key_code": "quote",
"modifiers": {
"mandatory": ["option"]
}
},
"to": [
{
"key_code": "backslash",
"modifiers": ["option"]
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment