我觉得改成这个就不要第三方,如:AltTab 之类的软件了,调度中心正好能显示很好的效果。
想要修改的原因是,调度中心默认的快捷键不太顺手,切换程序还是喜欢用 Command + Tab 快捷键
以下是我使用的配置
{
"title": "自定义一些快捷键",
"rules": [
{
"description": "调度中心",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "tab",
"modifiers": {
"mandatory": [
"command"
]
}
},
"to": [
{
"key_code": "up_arrow",
"modifiers": [
"control",
"shift"
]
}
]
}
]
}
]
}
1
unishare 2022-06-07 12:49:18 +08:00
|
2
1217950746 OP @unishare 比较喜欢按键,顺手了
|
3
Williamongh 2022-06-07 14:01:38 +08:00
用鼠标快捷键映射
|
4
ablu 2022-06-07 17:35:22 +08:00
系统偏好设置-键盘-快捷键-调度中心
即可 |
5
1217950746 OP @ablu 我说的快捷键这里设置不了的
|
6
xiaochou 2022-06-08 09:38:26 +08:00
可以分享下配置吗
|
7
1217950746 OP @xiaochou 已经添加 Append 了,你可以看看,注意 to 的快捷键,你的有可能和我的不一样
|
8
xiaochou 2022-06-08 14:00:56 +08:00
补充:
- 在`~/.config/karabiner/assets/complex_modifications`目录下新建 xxx.json - 然后把楼主的规则复制进去保存 - 在软件`Complex modifications` - `Add Rule`就可以看到 |