eightHundreds
5/22/2019 - 11:03 AM

Mouse buttons 3,4,5 -> cut, paste, copy . karabiner://karabiner/assets/complex_modifications/import?url=https://gist.githubusercontent.com

{
  "title": "Mouse buttons 3,4,5 -> cut, paste, copy",
  "rules": [
    {
      "description": "Maps button 5 to copy, 4 to paste, and 3 to cut to clipboard",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "pointing_button": "button4"
          },
          "to": [
            {
              "key_code": "v",
              "modifiers": "left_command"
            }
          ]
        },
        {
          "type": "basic",
          "from": {
            "pointing_button": "button5"
          },
          "to": [
            {
              "key_code": "c",
              "modifiers": "left_command"
            }
          ]
        },
        {
          "type": "basic",
          "from": {
            "pointing_button": "button3"
          },
          "to": [
              {
                "key_code": "x",
                "modifiers": "left_command"
              }
          ]
        }
      ]
    }
  ]  
}