创建了一个 rule ,想要把:Command + Option + Shift + =(等号键)
映射为:Command + Control + H
json 文件如下:
{
"title": "name",
"rules": [
{
"description": "none",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"left_command",
"left_option",
"left_shift"
],
"optional": [
"equal_sign"
]
}
},
"to": [
{
"repeat": true,
"key_code": "h",
"modifiers": [
"left_control",
"left_command"
]
}
]
}
]
}
]
}
求教用过 Karabiner-Elements 的 v 友,哪里出了问题呢?
1
jheroy 2022-11-30 09:23:33 +08:00
karabiner 的原生配置太繁琐, 可以用 https://github.com/yqrashawn/GokuRakuJoudo 来管理配置, 语法相对简洁很多.
|