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 | |
| TELEGRAM_BOT_TOKEN="" | |
| CHAT_ID="" | |
| title="$1" | |
| message="$2" | |
| disable_notification=false | |
| # Function to display script usage instructions |
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
| # Terminal command to convert all directory files from FLAC to ALAC (macOS Sonoma Beta 4.0 tested) | |
| export IFS=$'\n' | |
| for x in `ls *.flac`; do afconvert -v -f m4af -d alac $x ${x%flac}m4a; done |