Skip to content

Instantly share code, notes, and snippets.

@temp3l
Last active December 6, 2024 13:05
Show Gist options
  • Save temp3l/52f5d83b8297f8e8b0df891dcb332aa1 to your computer and use it in GitHub Desktop.
Save temp3l/52f5d83b8297f8e8b0df891dcb332aa1 to your computer and use it in GitHub Desktop.
karabiner mac terminal linux like binding with a windows keyboard
{
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.apple\\.Terminal$",
"^com\\.googlecode\\.iterm2$",
"^co\\.zeit\\.hyperterm$",
"^co\\.zeit\\.hyper$",
"^io\\.alacritty$",
"^org\\.alacritty$",
"^net\\.kovidgoyal\\.kitty$",
"com.googlecode.iterm2"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "c",
"modifiers": {
"mandatory": ["left_command"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "c",
"modifiers": ["control"]
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.apple\\.Terminal$",
"^com\\.googlecode\\.iterm2$",
"^co\\.zeit\\.hyperterm$",
"^co\\.zeit\\.hyper$",
"^io\\.alacritty$",
"^org\\.alacritty$",
"^net\\.kovidgoyal\\.kitty$",
"com.googlecode.iterm2"
],
"type": "frontmost_application_unless"
}
],
"description": "Change caps_lock to command+control+option+shift.",
"from": {
"key_code": "left_control",
"modifiers": { "optional": ["any"] }
},
"to": [
{
"key_code": "left_command",
"modifiers": ["command"]
}
],
"type": "basic"
}
]
}
@temp3l
Copy link
Author

temp3l commented Dec 6, 2024

This will be mapping CTRL key correctly in mac terminals.

I'm also using a simple-karabiner-binding to map alt+tab correctly:
left_option => left_command

@temp3l
Copy link
Author

temp3l commented Dec 6, 2024

install karabiner-elements + karabiner eventviewer from here: https://karabiner-elements.pqrs.org/

@temp3l
Copy link
Author

temp3l commented Dec 6, 2024

the json needs to be added under the tab: "complex keybindings".
I have disabled all other bindings and using the default macos settings

@temp3l
Copy link
Author

temp3l commented Dec 6, 2024

copy + paste with mouse3 works best with iterm2

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