Skip to content

Instantly share code, notes, and snippets.

@DonBattery
Last active January 12, 2023 13:34
Show Gist options
  • Save DonBattery/a91a621f5aa1211a6d0051c5f8556ec4 to your computer and use it in GitHub Desktop.
Save DonBattery/a91a621f5aa1211a6d0051c5f8556ec4 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
RADIO_PATH="${HOME}/pyradio"
PLAYLIST=${RADIO_PATH}/playlist
mkdir -p ${RADIO_PATH}
curl -s https://gist.githubusercontent.com/DonBattery/78e21751ee5540984d6baca4a36eef2b/raw/playlist > ${PLAYLIST}
while true
do
mpg123 -@ ${PLAYLIST}
done
@DonBattery
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment