🫠
Arcでなぜかoption+tabがショートカットで登録できない
事象
ArcでTab Switcherをoption+tabで登録しようとするとなぜか登録できない。
解決方法
Karabiner-Elementsを利用する
Add your own ruleで以下を設定
{
"description": "Browser.appでoption+tabをctrl+tabに変更",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^company\\.thebrowser\\.Browser$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "tab",
"modifiers": { "mandatory": ["option"] }
},
"to": [
{
"key_code": "tab",
"modifiers": ["control"]
}
],
"type": "basic"
}
]
}
Discussion