Advertisement
Guest User

Karabiner - Swap Cmd+Q and Alt+F4 - Partly functional

a guest
Mar 3rd, 2020
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.20 KB | None | 0 0
  1.  
  2. {
  3.     "description": "Swaps Alt-F4 and Cmd-Q",
  4.     "manipulators": [
  5.         {
  6.             "from": {
  7.                 "key_code": "q",
  8.                 "modifiers": {
  9.                     "mandatory": [
  10.                         "left_command"
  11.                     ],
  12.                     "optional": [
  13.                         "any"
  14.                     ]
  15.                 }
  16.             },
  17.             "to": [
  18.                 {
  19.                     "key_code": "f4",
  20.                     "modifiers": [
  21.                         "left_alt"
  22.                     ]
  23.                 }
  24.             ],
  25.             "type": "basic"
  26.         },
  27.         {
  28.             "from": {
  29.                 "key_code": "f4",
  30.                 "modifiers": {
  31.                     "mandatory": [
  32.                         "left_alt"
  33.                     ],
  34.                     "optional": [
  35.                         "any"
  36.                     ]
  37.                 }
  38.             },
  39.             "to": [
  40.                 {
  41.                     "key_code": "q",
  42.                     "modifiers": [
  43.                         "left_cmd"
  44.                     ]
  45.                 }
  46.             ],
  47.             "type": "basic"
  48.         }
  49.     ]
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement