Created
July 16, 2019 04:28
-
-
Save LiamHz/b18ea27fa67153e37ab7c1b109c3063b to your computer and use it in GitHub Desktop.
Map caps lock to l_control when used as modifier and esc when alone
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
{ | |
"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