Skip to content

Instantly share code, notes, and snippets.

@Hixon10
Created September 12, 2023 22:28
Show Gist options
  • Save Hixon10/50b29f3a3c321045675d76163fcfbbe0 to your computer and use it in GitHub Desktop.
Save Hixon10/50b29f3a3c321045675d76163fcfbbe0 to your computer and use it in GitHub Desktop.
Karabiner-Elements: Ctrl + Left Click to Alt + Left Click
{
"title": "Change Ctrl + Click to Alt + Click",
"rules": [
{
"description": "Ctrl + Left Click to Alt + Left Click",
"manipulators": [
{
"type": "basic",
"from": {
"pointing_button": "button1",
"modifiers": {
"mandatory": [
"left_control"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"pointing_button": "button1",
"modifiers": [
"left_alt"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment