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
{ | |
"description": "MacOS Change Home/End keys to Command + Left/Right Arrow (start/end of line)", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "end", | |
"modifiers": { | |
"optional": ["any"] | |
} |
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
{ | |
"description": "Change Keychrone Mic button to Dictation on MacOS", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "spacebar", | |
"modifiers": { "mandatory": ["fn"] } | |
}, | |
"to": [{ "consumer_key_code": "dictation" }], | |
"type": "basic" |
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
#!/bin/bash | |
# macOS Calendar: Show 14 Days in Week View | |
# Author: Łukasz Herok - [lukaszherok.com](https://lukaszherok.com) | |
echo "Closing calendar..." | |
osascript -e 'tell application "Calendar" to quit' | |
read -p "How many days in week view? [7]: " dni |