Skip to content

Instantly share code, notes, and snippets.

View lukasszz's full-sized avatar

Łukasz Herok lukasszz

View GitHub Profile
{
"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"]
}
@lukasszz
lukasszz / macos_keychron_mic
Last active May 13, 2025 06:43
Change Keychrone Mic button to Dictation
{
"description": "Change Keychrone Mic button to Dictation on MacOS",
"manipulators": [
{
"from": {
"key_code": "spacebar",
"modifiers": { "mandatory": ["fn"] }
},
"to": [{ "consumer_key_code": "dictation" }],
"type": "basic"
@lukasszz
lukasszz / macos_calendar_days_for_week_view.sh
Last active May 13, 2025 06:43
View 14 Days at Once in macOS Calendar App
#!/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