Skip to content

Instantly share code, notes, and snippets.

@TheCedarPrince
Created February 7, 2021 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save TheCedarPrince/8e8762c0c3ae5d5affd2f2bed2819f19 to your computer and use it in GitHub Desktop.
Save TheCedarPrince/8e8762c0c3ae5d5affd2f2bed2819f19 to your computer and use it in GitHub Desktop.
Song Ticker for OBS - writes to a file and then you can read it into OBS
while true
do
sleep 15
playerctl -p chromium metadata --format "{{ title }}" | sed -E 's/\[[^][]*\]//g' | sed 's/([^)]*)//g' &> ~/Streaming/song.txt
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment