123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689 |
- {
- "global": {
- "check_for_updates_on_startup": true,
- "show_in_menu_bar": false,
- "show_profile_name_in_menu_bar": false
- },
- "profiles": [
- {
- "complex_modifications": {
- "parameters": {
- "basic.simultaneous_threshold_milliseconds": 50,
- "basic.to_delayed_action_delay_milliseconds": 400,
- "basic.to_if_alone_timeout_milliseconds": 1000,
- "basic.to_if_held_down_threshold_milliseconds": 500,
- "mouse_motion_to_scroll.speed": 100
- },
- "rules": [
- {
- "NOTE": "from key must be a JSON object NOT arrary",
- "NOTE2": "see README to obtain bundle identifer",
- "description": "ipatch, messages.app, cmd+j cmd+k, for next and prev conversation",
- "manipulators": [
- {
- "conditions": [
- {
- "bundle_identifiers": [
- "com.apple.iChat"
- ],
- "file_paths": [
- "/Applications/Messages.app/Contents/MacOS/Messages"
- ],
- "type": "frontmost_application_if"
- }
- ],
- "from": {
- "key_code": "j",
- "modifiers": {
- "mandatory": [
- "left_command"
- ]
- }
- },
- "to": [
- {
- "key_code": "tab",
- "modifiers": [
- "left_control"
- ]
- }
- ],
- "type": "basic"
- },
- {
- "conditions": [
- {
- "bundle_identifiers": [
- "com.apple.iChat"
- ],
- "file_paths": [
- "/Applications/Messages.app/Contents/MacOS/Messages"
- ],
- "type": "frontmost_application_if"
- }
- ],
- "from": {
- "key_code": "k",
- "modifiers": {
- "mandatory": [
- "left_command"
- ]
- }
- },
- "to": [
- {
- "key_code": "tab",
- "modifiers": [
- "left_control",
- "shift"
- ]
- }
- ],
- "type": "basic"
- }
- ]
- },
- {
- "description": "Change caps_lock to control if pressed with other keys, to escape if pressed alone.",
- "manipulators": [
- {
- "from": {
- "key_code": "caps_lock",
- "modifiers": {
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "key_code": "left_control"
- }
- ],
- "to_if_alone": [
- {
- "key_code": "escape"
- }
- ],
- "type": "basic"
- }
- ]
- },
- {
- "description": "Toggle caps_lock by pressing left_shift + right_shift at the same time",
- "manipulators": [
- {
- "from": {
- "key_code": "left_shift",
- "modifiers": {
- "mandatory": [
- "right_shift"
- ],
- "optional": [
- "caps_lock"
- ]
- }
- },
- "to": [
- {
- "key_code": "caps_lock"
- }
- ],
- "to_if_alone": [
- {
- "key_code": "left_shift"
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "right_shift",
- "modifiers": {
- "mandatory": [
- "left_shift"
- ],
- "optional": [
- "caps_lock"
- ]
- }
- },
- "to": [
- {
- "key_code": "caps_lock"
- }
- ],
- "to_if_alone": [
- {
- "key_code": "right_shift"
- }
- ],
- "type": "basic"
- }
- ]
- },
- {
- "description": "ipatch, Map fn + number keys to their corresponding consumer keys ie. vol up / vol down",
- "manipulators": [
- {
- "from": {
- "key_code": "1",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "consumer_key_code": "display_brightness_decrement",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "2",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "consumer_key_code": "display_brightness_increment",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "3",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "key_code": "mission_control",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "4",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "key_code": "launchpad",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "5",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "key_code": "illumination_decrement",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "6",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "key_code": "illumination_increment",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "7",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "consumer_key_code": "rewind",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "8",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "consumer_key_code": "play_or_pause",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "9",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "consumer_key_code": "fast_forward",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "0",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "consumer_key_code": "mute",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "hyphen",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "consumer_key_code": "volume_decrement",
- "repeat": true
- }
- ],
- "type": "basic"
- },
- {
- "from": {
- "key_code": "equal_sign",
- "modifiers": {
- "mandatory": [
- "fn"
- ],
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "consumer_key_code": "volume_increment",
- "repeat": true
- }
- ],
- "type": "basic"
- }
- ]
- },
- {
- "description": "Press right_command twice, toggle AutoRaise 🛸",
- "manipulators": [
- {
- "conditions": [
- {
- "name": "key pressed",
- "type": "variable_if",
- "value": 1
- }
- ],
- "from": {
- "key_code": "right_command",
- "modifiers": {
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "shell_command": "/bin/bash ~/.local/bin/auto-raise.sh 2>&1 >/dev/null"
- }
- ],
- "type": "basic"
- },
- {
- "description": "to_delayed_action is set to 400ms in karabiner.json",
- "from": {
- "key_code": "right_command",
- "modifiers": {
- "optional": [
- "any"
- ]
- }
- },
- "to": [
- {
- "set_variable": {
- "name": "key pressed",
- "value": 1
- }
- },
- {
- "key_code": "right_command"
- }
- ],
- "to_delayed_action": {
- "to_if_canceled": [
- {
- "set_variable": {
- "name": "key pressed",
- "value": 0
- }
- }
- ],
- "to_if_invoked": [
- {
- "set_variable": {
- "name": "key pressed",
- "value": 0
- }
- }
- ]
- },
- "type": "basic"
- }
- ]
- },
- {
- "description": "🏴☠️ ipatch, hold left_shift then press fn to globally play or pause ⏯ mpv",
- "manipulators": [
- {
- "from": {
- "key_code": "return_or_enter",
- "modifiers": {
- "mandatory": [
- "left_control"
- ],
- "optional": [
- "caps_lock"
- ]
- }
- },
- "to": [
- {
- "shell_command": "/bin/bash ~/.local/bin/mpv_control_playback.sh > ~/logs/mpv_pb.log 2>&1"
- }
- ],
- "type": "basic"
- }
- ]
- }
- ]
- },
- "devices": [
- {
- "disable_built_in_keyboard_if_exists": false,
- "fn_function_keys": [],
- "identifiers": {
- "is_keyboard": true,
- "is_pointing_device": false,
- "product_id": 610,
- "vendor_id": 1452
- },
- "ignore": false,
- "manipulate_caps_lock_led": true,
- "simple_modifications": []
- },
- {
- "disable_built_in_keyboard_if_exists": false,
- "fn_function_keys": [],
- "identifiers": {
- "is_keyboard": true,
- "is_pointing_device": false,
- "product_id": 591,
- "vendor_id": 1452
- },
- "ignore": false,
- "manipulate_caps_lock_led": true,
- "simple_modifications": [
- {
- "from": {
- "key_code": "escape"
- },
- "to": [
- {
- "key_code": "grave_accent_and_tilde"
- }
- ]
- },
- {
- "from": {
- "key_code": "left_control"
- },
- "to": [
- {
- "key_code": "fn"
- }
- ]
- }
- ]
- }
- ],
- "fn_function_keys": [
- {
- "from": {
- "key_code": "f1"
- },
- "to": [
- {
- "consumer_key_code": "display_brightness_decrement"
- }
- ]
- },
- {
- "from": {
- "key_code": "f2"
- },
- "to": [
- {
- "consumer_key_code": "display_brightness_increment"
- }
- ]
- },
- {
- "from": {
- "key_code": "f3"
- },
- "to": [
- {
- "key_code": "mission_control"
- }
- ]
- },
- {
- "from": {
- "key_code": "f4"
- },
- "to": [
- {
- "key_code": "launchpad"
- }
- ]
- },
- {
- "from": {
- "key_code": "f5"
- },
- "to": [
- {
- "key_code": "illumination_decrement"
- }
- ]
- },
- {
- "from": {
- "key_code": "f6"
- },
- "to": [
- {
- "key_code": "illumination_increment"
- }
- ]
- },
- {
- "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": "fastforward"
- }
- ]
- },
- {
- "from": {
- "key_code": "f10"
- },
- "to": [
- {
- "consumer_key_code": "mute"
- }
- ]
- },
- {
- "from": {
- "key_code": "f11"
- },
- "to": [
- {
- "consumer_key_code": "volume_decrement"
- }
- ]
- },
- {
- "from": {
- "key_code": "f12"
- },
- "to": [
- {
- "consumer_key_code": "volume_increment"
- }
- ]
- }
- ],
- "name": "capin-macOS",
- "parameters": {
- "delay_milliseconds_before_open_device": 1000
- },
- "selected": true,
- "simple_modifications": [],
- "virtual_hid_keyboard": {
- "country_code": 0,
- "indicate_sticky_modifier_keys_state": true,
- "mouse_key_xy_scale": 100
- }
- }
- ]
- }
|