-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: karabiner - updated assets and config
- Loading branch information
Showing
7 changed files
with
1,314 additions
and
2,222 deletions.
There are no files selected for viewing
329 changes: 0 additions & 329 deletions
329
.config/karabiner/assets/complex_modifications/1530814306.json
This file was deleted.
Oops, something went wrong.
57 changes: 57 additions & 0 deletions
57
.config/karabiner/assets/complex_modifications/caps_nikola.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"title": "Control via Caps/Return - Nikola", | ||
"rules": [ | ||
{ | ||
"description": "Return to Return on single press, Control (right) on press and hold.", | ||
"manipulators": [ | ||
{ | ||
"type": "basic", | ||
"from": { | ||
"key_code": "return_or_enter", | ||
"modifiers": { | ||
"optional": [ | ||
"any" | ||
] | ||
} | ||
}, | ||
"to": [ | ||
{ | ||
"key_code": "right_control" | ||
} | ||
], | ||
"to_if_alone": [ | ||
{ | ||
"key_code": "return_or_enter" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "Caps Lock to Escape on single press, Control (left) on press and hold.", | ||
"manipulators": [ | ||
{ | ||
"type": "basic", | ||
"from": { | ||
"key_code": "caps_lock", | ||
"modifiers": { | ||
"optional": [ | ||
"any" | ||
] | ||
} | ||
}, | ||
"to": [ | ||
{ | ||
"key_code": "left_control" | ||
} | ||
], | ||
"to_if_alone": [ | ||
{ | ||
"key_code": "escape" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.