Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
TELEGRAM_BOT_TOKEN=""
CHAT_ID=""
title="$1"
message="$2"
disable_notification=false
# Function to display script usage instructions
@embersee
embersee / flac2alac.sh
Last active July 31, 2023 08:17
Convert FLAC to ALAC
# 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