dotfiles/karabiner/assets/complex_modifications/custom-capslock.json
Mikkel Svartveit 6009c4e36d First commit
2023-03-21 16:31:37 +01:00

30 lines
609 B
JSON

{
"title": "Change caps_lock to Esc and Control",
"rules": [
{
"description": "Post Esc if Caps is tapped, Control if held.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": ["any"]
}
},
"to": [
{
"key_code": "left_control",
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "escape"
}
]
}
]
}
]
}