radion is an internet radio CLI client, written in Bash.

https://gitlab.com/christosangel/radion

Radion can be customized as far as the station selecting program is concerned. The user can choose between:

  • read

read

  • fzf

fzf

  • rofi

rofi

  • dmenu

dmenu


Update: Introduced new feature: customizing prompt text for fzf dmenu and rofi.


Update: MacOS support added now thanks to Andrea Schäfer

Also, I was forced by my daughter to add some anime radio stations

  • HexesofVexes@lemmy.world
    link
    fedilink
    arrow-up
    9
    ·
    9 months ago

    Well, I know what I’ll be using to listen to my radio stations from now on. Really neat project!

    Also, it doesn’t pick up user defined tags because it’s looking in the wrong place for them!

    Row 114:

    TAGS=( $(sed ‘s/ /\n/g’ stations.txt |grep “#”|grep -v “#Favorites”|sort|uniq|sed ‘s/#//g’) )

    Should be

    TAGS=( $(sed ‘s/ /\n/g’ $HOME/.cache/radion/stations.txt |grep “#”|grep -v “#Favorites”|sort|uniq|sed ‘s/#//g’) )

    • christos@lemmy.worldOP
      link
      fedilink
      arrow-up
      8
      ·
      9 months ago
      • Excellent catch! This one slipped through! I just fixed the bug, thank you very much!

      I am happy you like it!