Last active
May 2, 2021 14:46
-
-
Save weblogix/049e558646b4e2ab5726ba94d9c7babb to your computer and use it in GitHub Desktop.
[Karabiner-Elements] for DREVO Calibur 71-key Keyboard #mac #keyboard #karabiner
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": "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