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
| # To prevent Rekordbox from starting during boot | |
| : > ~/Library/LaunchAgents/com.pioneerdj.rekordboxdj.agent.plist && chflags uchg ~/Library/LaunchAgents/com.pioneerdj.rekordboxdj.agent.plist | |
| # To undo the change | |
| chflags nouchg ~/Library/LaunchAgents/com.pioneerdj.rekordboxdj.agent.plist |
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 | |
| # Auto commits after each Claude turn if: | |
| # - A STOP hook is configured that runs this script | |
| # - A <repo_root>.claude/auto_commit.json file has key "enabled" set to `true` | |
| set -euo pipefail | |
| INPUT=$(cat) | |
| # Find git root; bail if not a repo | |
| GIT_ROOT=$(git rev-parse --show-toplevel 2>/dev/null) || exit 0 |
OlderNewer