Stop panicking about what music to listen… Just tune in to a random Radio Station.
- create a minimal gui frontend
- create a repo of well known radio stations
ffmpeg (for ffplay) : Most Probably already installed in your system.switched to libmpv to save my sanity…- libmpv
Build from source…
git clone --depth=1 "https://github.com/ayusjayaswal/radio"
cd radio
g++ main.cpp -o radio -lmpv
sudo mv radio /usr/local/bin/As of now, only configuration you can do is to set the radio stations and their links in $HOME/.config/radio/config.ini
Running without any flag plays a random Radio station Options: -l List all available stations -v Verbose Listing of Radio Stations along with desciptions -s <station_name> Play the specified station -h Display this help message
from Unix terminal…
radio -s "$(radio -l | fzf)"or if you fancy dmenu
radio -s "$(radio -l | dmenu -l 10)"