Skip to content

Instantly share code, notes, and snippets.

@sdgandhi
Last active April 1, 2020 03:22
Show Gist options
  • Save sdgandhi/ab7dbd20d65891c7b10f3962038039f0 to your computer and use it in GitHub Desktop.
Save sdgandhi/ab7dbd20d65891c7b10f3962038039f0 to your computer and use it in GitHub Desktop.
karabiner mouse keys
{
"title": "Mouse keys SG",
"rules": [
{
"description": "Mouse keys SG",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "w",
"modifiers": {
"mandatory": [
"right_gui"
],
"optional": [
"any"
]
}
},
"to": [
{
"mouse_key": {
"y": -1536
}
}
]
},
{
"type": "basic",
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"right_gui"
],
"optional": [
"any"
]
}
},
"to": [
{
"mouse_key": {
"x": -1536
}
}
]
},
{
"type": "basic",
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"right_gui"
],
"optional": [
"any"
]
}
},
"to": [
{
"mouse_key": {
"y": 1536
}
}
]
},
{
"type": "basic",
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"right_gui"
],
"optional": [
"any"
]
}
},
"to": [
{
"mouse_key": {
"x": 1536
}
}
]
},
{
"type": "basic",
"from": {
"key_code": "r",
"modifiers": {
"mandatory": [
"right_gui"
],
"optional": [
"any"
]
}
},
"to": [
{
"mouse_key": {
"vertical_wheel": -32
}
}
]
},
{
"type": "basic",
"from": {
"key_code": "v",
"modifiers": {
"mandatory": [
"right_gui"
],
"optional": [
"any"
]
}
},
"to": [
{
"mouse_key": {
"vertical_wheel": 32
}
}
]
},
{
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"right_gui"
],
"optional": [
"any"
]
}
},
"to": [
{
"pointing_button": "button1"
}
]
},
{
"type": "basic",
"from": {
"key_code": "g",
"modifiers": {
"mandatory": [
"right_gui"
],
"optional": [
"any"
]
}
},
"to": [
{
"pointing_button": "button2"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment