Last active
October 20, 2017 17:41
-
-
Save ErikFontanel/7faacb412a849f19d3b3d342d928f9a5 to your computer and use it in GitHub Desktop.
Varmilo VA68 Mac keyboard layout. Sets the command, option and control keys in the right place. Changes insert to home too. Add this under 'Simple Modifcations' to you keyboard profile for your Varmilo keyboard in karabiner.json.
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
"simple_modifications": [ | |
{ | |
"from": { | |
"key_code": "insert" | |
}, | |
"to": { | |
"key_code": "home" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "left_command" | |
}, | |
"to": { | |
"key_code": "left_option" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "left_option" | |
}, | |
"to": { | |
"key_code": "left_command" | |
} | |
}, | |
{ | |
"from": { | |
"key_code": "right_option" | |
}, | |
"to": { | |
"key_code": "right_command" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment