-
-
Save idkjs/c102fa6da85c21be093033db470fcd91 to your computer and use it in GitHub Desktop.
[Karabiner-Elements] for DREVO Calibur 71-key Keyboard #mac #keyboard #karabiner
This file contains hidden or 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