Skip to content

Instantly share code, notes, and snippets.

@myui
Last active December 7, 2017 05:43
Show Gist options
  • Save myui/8ed9d9724c8b93081091bc3da70541bd to your computer and use it in GitHub Desktop.
Save myui/8ed9d9724c8b93081091bc3da70541bd to your computer and use it in GitHub Desktop.
karabiner elements
{
"title": "CTRL <=> CMD except Terminal and Emacs",
"rules": [
{
"description": "Swap ctrl and command except Terminal and Emacs",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_command"
}
],
"conditions": [
{
"type": "frontmost_application_unless",
"bundle_identifiers": [
"Terminal",
"org.gnu.Emacs"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "left_command",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_control"
}
],
"conditions": [
{
"type": "frontmost_application_unless",
"bundle_identifiers": [
"Terminal",
"org.gnu.Emacs"
]
}
]
}
]
}
]
}
@myui
Copy link
Author

myui commented Oct 19, 2017

~/.config/karabiner/assets/complex_modifications/terminal.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment