Skip to content

Instantly share code, notes, and snippets.

@KireinaHoro
Created January 10, 2018 15:52
Show Gist options
  • Save KireinaHoro/7cfcf0b1c5704e51fcaf3c6766797ce1 to your computer and use it in GitHub Desktop.
Save KireinaHoro/7cfcf0b1c5704e51fcaf3c6766797ce1 to your computer and use it in GitHub Desktop.
VoodooPS2 Touchpad Mappings for Mission Control and Exposé
{
"title": "VoodooPS2 Touchpad Mappings for Mission Control and Exposé",
"rules": [
{
"description": "Change Control+Command+Up to Control+Up",
"manipulators": [
{
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"command",
"control"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "up_arrow",
"modifiers": [
"control"
]
}
],
"type": "basic"
}
]
},
{
"description": "Change Control+Command+Down to Control+Down",
"manipulators": [
{
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"command",
"control"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "down_arrow",
"modifiers": [
"control"
]
}
],
"type": "basic"
}
]
},
{
"description": "Change Control+Command+Right to Control+Left",
"manipulators": [
{
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": [
"command",
"control"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_arrow",
"modifiers": [
"control"
]
}
],
"type": "basic"
}
]
},
{
"description": "Change Control+Command+Left to Control+Right",
"manipulators": [
{
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": [
"command",
"control"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_arrow",
"modifiers": [
"control"
]
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment