Skip to content

Instantly share code, notes, and snippets.

@borisrorsvort
Created November 2, 2021 09:20
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 borisrorsvort/bba9c5d8636dda77a3ec9d0f3a8777c1 to your computer and use it in GitHub Desktop.
Save borisrorsvort/bba9c5d8636dda77a3ec9d0f3a8777c1 to your computer and use it in GitHub Desktop.
karabiner-custom-truly-ergonomic
{
"title": "Truly ergonomic bépo custom keys combo",
"rules": [
{
"description": "Undo",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"left_gui"
]
},
"key_code": "z"
},
"to": [
{
"repeat": true,
"key_code": "open_bracket",
"modifiers": [
"left_gui"
]
}
]
}
]
},
{
"description": "Copy",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"left_gui"
]
},
"key_code": "c"
},
"to": [
{
"repeat": true,
"key_code": "h",
"modifiers": [
"left_gui"
]
}
]
}
]
},
{
"description": "Paste",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"left_gui"
]
},
"key_code": "v"
},
"to": [
{
"repeat": true,
"key_code": "u",
"modifiers": [
"left_gui"
]
}
]
}
]
},
{
"description": "Cut",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"left_gui"
]
},
"key_code": "x"
},
"to": [
{
"repeat": true,
"key_code": "c",
"modifiers": [
"left_gui"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment