My personal modifications for Karabiner
Reference: https://pqrs.org/osx/karabiner/json.html
- Add panych.json to ~/.config/karabiner/assets/complex_modifications
- Activate in Karabiner menu: Complex Modifications / Add rule
My personal modifications for Karabiner
Reference: https://pqrs.org/osx/karabiner/json.html
| { | |
| "title": "Arrows on i,j,k,l", | |
| "rules": [ | |
| { | |
| "description": "cmd + [i, j, k, l] to arrows: up, left, down and right", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "j", | |
| "modifiers": { | |
| "mandatory": ["command"], | |
| "optional": ["option", "shift"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "left_arrow" | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "i", | |
| "modifiers": { | |
| "mandatory": ["command"], | |
| "optional": ["option", "shift"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "up_arrow" | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "k", | |
| "modifiers": { | |
| "mandatory": ["command"], | |
| "optional": ["option", "shift"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "down_arrow" | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "l", | |
| "modifiers": { | |
| "mandatory": ["command"], | |
| "optional": ["option", "shift"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "right_arrow" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } |