Skip to content

Instantly share code, notes, and snippets.

@erenseymen
Last active March 21, 2022 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erenseymen/0136a2c92c08a01ca923aea94a28d367 to your computer and use it in GitHub Desktop.
Save erenseymen/0136a2c92c08a01ca923aea94a28d367 to your computer and use it in GitHub Desktop.
fg-radio
#!/bin/bash
FG_STREAM_URL="http://37.1.145.21:9001/;stream.mp3"
FG_COMMAND="audacious -2 --headless $FG_STREAM_URL"
FG_COMMAND_PID=$(pgrep -f "$FG_COMMAND")
if [ $FG_COMMAND_PID ]
then
kill -9 $FG_COMMAND_PID
else
$FG_COMMAND &
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment