Skip to content

Instantly share code, notes, and snippets.

@zoshigayan
Created June 23, 2021 13:11
Show Gist options
  • Save zoshigayan/cea1dbd21bac5b04b819f83db225b444 to your computer and use it in GitHub Desktop.
Save zoshigayan/cea1dbd21bac5b04b819f83db225b444 to your computer and use it in GitHub Desktop.
Karabiner-ElementsでMacをWindowsみたいにする設定
{
"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