Files
dotfiles/darwin/karabiner/karabiner.json
Stefan Imhoff 5d8491d2d8 chore: backup
2024-11-01 14:46:38 +01:00

331 lines
15 KiB
JSON

{
"profiles": [
{
"complex_modifications": {
"rules": [
{
"description": "CAPS_LOCK : (Hyper) SHIFT+COMMAND+OPTION+CONTROL or ESCAPE (if alone)",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": { "optional": ["any"] }
},
"to": [
{
"key_code": "left_shift",
"modifiers": ["left_command", "left_control", "left_option"]
}
],
"to_if_alone": [{ "key_code": "escape" }],
"type": "basic"
},
{
"description": "Avoid starting sysdiagnose with the built-in macOS shortcut cmd+shift+option+ctrl+,",
"from": {
"key_code": "comma",
"modifiers": { "mandatory": ["command", "shift", "option", "control"] }
},
"to": [],
"type": "basic"
},
{
"description": "Avoid starting sysdiagnose with the built-in macOS shortcut cmd+shift+option+ctrl+.",
"from": {
"key_code": "period",
"modifiers": { "mandatory": ["command", "shift", "option", "control"] }
},
"to": [],
"type": "basic"
},
{
"from": {
"description": "Avoid starting sysdiagnose with the built-in macOS shortcut cmd+shift+option+ctrl+/",
"key_code": "slash",
"modifiers": { "mandatory": ["command", "shift", "option", "control"] }
},
"to": [],
"type": "basic"
}
]
},
{
"description": "CAPS_LOCK + i/j/k/l == Arrow Keys",
"manipulators": [
{
"from": {
"key_code": "k",
"modifiers": {
"mandatory": ["left_shift", "left_command", "left_control", "left_option"],
"optional": ["any"]
}
},
"to": [{ "key_code": "up_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["left_shift", "left_command", "left_control", "left_option"],
"optional": ["any"]
}
},
"to": [{ "key_code": "left_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "j",
"modifiers": {
"mandatory": ["left_shift", "left_command", "left_control", "left_option"],
"optional": ["any"]
}
},
"to": [{ "key_code": "down_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "l",
"modifiers": {
"mandatory": ["left_shift", "left_command", "left_control", "left_option"],
"optional": ["any"]
}
},
"to": [{ "key_code": "right_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "semicolon",
"modifiers": {
"mandatory": ["left_shift", "left_command", "left_control", "left_option"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "right_arrow",
"modifiers": ["left_command"]
}
],
"type": "basic"
}
]
},
{
"description": "F4: Open Raycast",
"manipulators": [
{
"from": { "key_code": "f4" },
"to": [{ "shell_command": "open -a raycast" }],
"type": "basic"
}
]
},
{
"description": "Focus Microsoft Teams Meeting Manager Window",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"com.microsoft.teams"
],
"type": "frontmost_application_unless"
}
],
"from": {
"key_code": "spacebar",
"modifiers": { "mandatory": ["fn"] }
},
"to": [
{
"lazy": true,
"repeat": true,
"shell_command": "if [ $(ps aux | grep -v grep | grep -ci \"Microsoft Teams.app/Contents/Frameworks/Microsoft Teams Helper.app\") -gt 0 ]; then osascript -e 'activate application id \"com.microsoft.teams\"' -e 'tell application \"System Events\" to keystroke \"m\" using {command down, shift down}'; fi"
}
],
"type": "basic"
}
]
},
{
"description": "Change Fn + Spacebar to Shift + Cmd + A",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.microsoft\\.teams$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "spacebar",
"modifiers": { "mandatory": ["fn"] }
},
"to": [
{
"key_code": "m",
"modifiers": ["left_shift", "left_gui"]
}
],
"type": "basic"
}
]
},
{
"description": "Change option + a/o/u to ä/ö/ü",
"manipulators": [
{
"from": {
"key_code": "a",
"modifiers": {
"mandatory": ["option"],
"optional": ["caps_lock"]
}
},
"to": [
{
"key_code": "u",
"modifiers": ["left_option"]
},
{ "key_code": "a" },
{ "key_code": "vk_none" }
],
"type": "basic"
},
{
"from": {
"key_code": "a",
"modifiers": { "mandatory": ["option", "shift"] }
},
"to": [
{
"key_code": "u",
"modifiers": ["left_option"]
},
{
"key_code": "a",
"modifiers": ["left_shift"]
},
{ "key_code": "vk_none" }
],
"type": "basic"
},
{
"from": {
"key_code": "o",
"modifiers": {
"mandatory": ["option"],
"optional": ["caps_lock"]
}
},
"to": [
{
"key_code": "u",
"modifiers": ["left_option"]
},
{ "key_code": "o" },
{ "key_code": "vk_none" }
],
"type": "basic"
},
{
"from": {
"key_code": "o",
"modifiers": { "mandatory": ["option", "shift"] }
},
"to": [
{
"key_code": "u",
"modifiers": ["left_option"]
},
{
"key_code": "o",
"modifiers": ["left_shift"]
},
{ "key_code": "vk_none" }
],
"type": "basic"
},
{
"from": {
"key_code": "u",
"modifiers": {
"mandatory": ["option"],
"optional": ["caps_lock"]
}
},
"to": [
{
"key_code": "u",
"modifiers": ["left_option"]
},
{ "key_code": "u" },
{ "key_code": "vk_none" }
],
"type": "basic"
},
{
"from": {
"key_code": "u",
"modifiers": { "mandatory": ["option", "shift"] }
},
"to": [
{
"key_code": "u",
"modifiers": ["left_option"]
},
{
"key_code": "u",
"modifiers": ["left_shift"]
},
{ "key_code": "vk_none" }
],
"type": "basic"
}
]
}
]
},
"fn_function_keys": [
{
"from": { "key_code": "f4" },
"to": [{ "apple_vendor_keyboard_key_code": "launchpad" }]
},
{
"from": { "key_code": "f5" },
"to": [{ "key_code": "f5" }]
}
],
"name": "Default profile",
"selected": true,
"simple_modifications": [
{
"from": { "key_code": "f3" },
"to": [{ "apple_vendor_keyboard_key_code": "mission_control" }]
},
{
"from": { "key_code": "f7" },
"to": [{ "consumer_key_code": "rewind" }]
},
{
"from": { "key_code": "f8" },
"to": [{ "consumer_key_code": "play_or_pause" }]
},
{
"from": { "key_code": "f9" },
"to": [{ "consumer_key_code": "fast_forward" }]
}
],
"virtual_hid_keyboard": {
"country_code": 0,
"keyboard_type_v2": "ansi"
}
}
]
}