我觉得改成这个就不要第三方,如: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 年 6 月 7 日
|
3
Williamongh 2022 年 6 月 7 日
用鼠标快捷键映射
|
4
ablu 2022 年 6 月 7 日
系统偏好设置-键盘-快捷键-调度中心
即可 |
6
aydengen 2022 年 6 月 8 日
可以分享下配置吗
|
8
aydengen 2022 年 6 月 8 日
补充:
- 在`~/.config/karabiner/assets/complex_modifications`目录下新建 xxx.json - 然后把楼主的规则复制进去保存 - 在软件`Complex modifications` - `Add Rule`就可以看到 |