Last active
October 18, 2022 11:57
-
-
Save emindeniz99/541419e5d67007cc14a2a1ce1f829144 to your computer and use it in GitHub Desktop.
my karabiner rules https://karabiner-elements.pqrs.org/
This file contains hidden or 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
{ | |
"title": "my rules", | |
"rules": [ | |
{ | |
"description": "Maps F6 to Clipboard Screenshot", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "f6" | |
}, | |
"to": [ | |
{ | |
"key_code": "4", | |
"modifiers": ["left_command", "left_control", "left_shift"] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "maccy fn v", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "v", | |
"modifiers": { | |
"mandatory": ["fn"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "v", | |
"modifiers": ["left_command", "left_shift"] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment