{
"title": "Double left_control to become caps_lock",
"rules": [
{
"description": "Double left_control to become caps_lock",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": ["any"]
}
},
"to": [
{
"key_code": "caps_lock"
}
],
"conditions": [
{
"type": "variable_if",
"name": "left_control pressed",
"value": 1
}
]
},
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": ["any"]
}
},
"to": [
{
"set_variable": {
"name": "left_control pressed",
"value": 1
}
},
{
"key_code": "left_control"
}
],
"to_delayed_action": {
"to_if_invoked": [
{
"set_variable": {
"name": "left_control pressed",
"value": 0
}
}
],
"to_if_canceled": [
{
"set_variable": {
"name": "left_control pressed",
"value": 0
}
}
]
}
}
]
}
]
}
网友评论