Created
June 23, 2021 13:11
-
-
Save zoshigayan/cea1dbd21bac5b04b819f83db225b444 to your computer and use it in GitHub Desktop.
Karabiner-ElementsでMacをWindowsみたいにする設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "MacをWindowsっぽくするやつ", | |
"rules": [ | |
{ | |
"description": "Option+tabでCmd+tabできるようにする", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "tab", | |
"modifiers": { | |
"mandatory": [ | |
"option" | |
], | |
"optional": [ | |
"shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "tab", | |
"modifiers": [ | |
"command" | |
] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "Terminal.app以外はcommandとcontrolを入れ替える", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "left_control", | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_command" | |
} | |
], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_unless", | |
"bundle_identifiers": [ | |
"^com\\.apple\\.Terminal" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment