Skip to content

Instantly share code, notes, and snippets.

@LiamHz
Created July 16, 2019 04:28
Map caps lock to l_control when used as modifier and esc when alone
{
"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