Skip to content

Instantly share code, notes, and snippets.

@weblogix
Last active May 2, 2021 14:46
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save weblogix/049e558646b4e2ab5726ba94d9c7babb to your computer and use it in GitHub Desktop.
Save weblogix/049e558646b4e2ab5726ba94d9c7babb to your computer and use it in GitHub Desktop.
[Karabiner-Elements] for DREVO Calibur 71-key Keyboard #mac #keyboard #karabiner
{
"title": "DREVO Calibur 71-key Keyboard",
"rules": [
{
"description": "Set ESC to grave_accent_and_tilde",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"optional": [
"left_gui",
"left_shift",
"right_shift"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde"
}
]
}
]
},
{
"description": "Swap command to option keys (left)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_command"
},
"to": [
{
"key_code": "left_option"
}
]
}
]
},
{
"description": "Swap option to command keys (left)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_option"
},
"to": [
{
"key_code": "left_command"
}
]
}
]
},
{
"description": "Map Page-up to increase volumne",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "page_up"
},
"to": [
{
"key_code": "volume_increment"
}
]
}
]
},
{
"description": "Map Page-down to decrease volume",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "page_down"
},
"to": [
{
"key_code": "volume_decrement"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment