dotfiles/macos/.config/karabiner/karabiner.json
Josh Sherman 7154e64e43
Add Karabiner-Elements and Zellij configs
Tossed karabiner inside of the macos directory. Starting to wonder if I
outta break that directory up, or if I outta double down and consolidate
around which system the files apply to.
2024-11-14 18:27:33 -06:00

42 lines
No EOL
1.5 KiB
JSON

{
"global": { "show_in_menu_bar": false },
"profiles": [
{
"complex_modifications": {
"rules": [
{
"manipulators": [
{
"description": "Change right_command to command+control+option+shift.",
"from": {
"key_code": "right_command",
"modifiers": { "optional": ["any"] }
},
"to": [
{
"key_code": "left_shift",
"modifiers": ["left_command", "left_control", "left_option"]
}
],
"to_if_alone": [{ "key_code": "f20" }],
"type": "basic"
}
]
}
]
},
"name": "Default profile",
"selected": true,
"simple_modifications": [
{
"from": { "key_code": "caps_lock" },
"to": [{ "key_code": "left_control" }]
}
],
"virtual_hid_keyboard": {
"country_code": 0,
"keyboard_type_v2": "ansi"
}
}
]
}