Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@vanjac
Last active July 20, 2019 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanjac/3704d70f256b81f0ba71b79fe1d83635 to your computer and use it in GitHub Desktop.
Save vanjac/3704d70f256b81f0ba71b79fe1d83635 to your computer and use it in GitHub Desktop.
Karabiner example rule
{
"title": "1 Example rule set",
"rules": [
{
"description": "Press A to Save As",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "a"
},
"to": [
{
"key_code": "s",
"modifiers": [
"command",
"shift"
]
}
],
"conditions": [
{
"type": "device_if",
"identifiers": [
{
"vendor_id": 16700,
"product_id": 8197,
"description": "macro keyboard"
}
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment