Created
July 16, 2019 04:28
Map caps lock to l_control when used as modifier and esc when alone
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
{ | |
"profiles": [ | |
{ | |
"name": "Default profile", | |
"selected": true, | |
"complex_modifications": { | |
"rules": [ | |
{ | |
"description": "A Modern Space Cadet (Steve Losh)", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": {"key_code": "caps_lock"}, | |
"to": [{"key_code": "left_control"}], | |
"to_if_alone": [{"key_code": "escape"}] | |
} | |
] | |
} | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment