Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mountainash/9cc053b1969f314a3a7061dacd329721 to your computer and use it in GitHub Desktop.
Save mountainash/9cc053b1969f314a3a7061dacd329721 to your computer and use it in GitHub Desktop.
Karabiner Logitech SPOLTLIGHT Media Remote Control
{
"title": "Logitech Spotlight as Media Remote Control",
"rules": [
{
"description": "Play/Pause (double press to increase volume) 12",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"conditions": [
{
"name": "volume-up",
"type": "variable_if",
"value": 1
}
],
"to": [
{
"key_code": "up_arrow"
}
]
},
{
"type": "basic",
"from": {
"key_code": "right_arrow"
},
"to": [
{
"set_variable": {
"name": "volume-up",
"value": 1
}
},
{
"key_code": "spacebar"
}
],
"to_delayed_action": {
"to_if_invoked": [
{
"set_variable": {
"name": "volume-up",
"value": 0
}
}
],
"to_if_canceled": [
{
"set_variable": {
"name": "volume-up",
"value": 0
}
}
]
},
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"vendor_id": 1133
}
]
}
]
}
]
},
{
"description": "Left press to decrease volume",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_arrow"
},
"to": [
{
"key_code": "down_arrow"
}
],
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"vendor_id": 1133
}
]
}
]
}
]
}
]
}