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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Replace the choo-choo.mp3 sound in the Conductor app with a custom MP3 file. | |
| # Usage: ./replace-conductor-sound.sh <path-to-mp3> | |
| # | |
| # Requirements: ffmpeg, python3, brotli (pip) | |
| CONDUCTOR_BIN="/Applications/Conductor.app/Contents/MacOS/conductor" | |
| BACKUP_PATH="/tmp/conductor-backup-$(date +%s)" |
OlderNewer