Mouse buttons 3,4,5 -> cut, paste, copy . karabiner://karabiner/assets/complex_modifications/import?url=https://gist.githubusercontent.com/eightHundreds/99d6ce5bf7886d56c31bcb8195db963f/raw/eebac5c6dd6f02e781cc15e84ddc0d35f2c551d8/karabiner-mouse.json
{
"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"
}
]
}
]
}
]
}