Radion, an internet radio CLI client, written in Bash.

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


Update: Recording functionality added, with the use of another (you guessed it) bash script

icy

Also options in read as Preferred selector are also case insensitive.

Any feedback is appreciated!

christos,
@christos@lemmy.world avatar

Update: Recording functionality added, with the use of another (you guessed it) bash script

icy

Also options in read as Preferred selector are also case insensitive.

Any feedback is appreciated!

HexesofVexes,

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,
@christos@lemmy.world avatar
  • Excellent catch! This one slipped through! I just fixed the bug, thank you very much!

I am happy you like it!

dragnet,

Awesome :) I think I shall set this up in Termux later for one more on the go music option.

lemmyvore,

Unrelated but, in case it’s not dyslexia, it’s “customize” not “costumize”. It comes from “custom” not “costume”.

christos,
@christos@lemmy.world avatar

You are right, lapsus calami

superguy,

Maybe it’s just me, but I think we don’t need more command line functionality.

christos,
@christos@lemmy.world avatar

Maybe. Respectfuly, feel free to move along. I fail to see the aim of your message.

superguy,

That’s fine. Not everything is for you.

christos,
@christos@lemmy.world avatar

By the way: Who’s “we”? Do you represent a group of people? Are you elected to speak for someone? Or is it the plural of some royal family? Please.

superguy,

Calm down. Sorry I don’t care about the thing you made, but that’s no reason to throw a tantrum.

christos,
@christos@lemmy.world avatar

I know, it so indifferent to you, that you have written so many messages on my post, just to troll me. Go on, write one more, have the last word and be done with it.

superguy,

Okay. You seem like the kind of guy who would prefer to use the CLI, lol.

vsh,

In bash?? So the sound comes out of the PC motherboard speaker?

christos,
@christos@lemmy.world avatar

Don’t give me new ideas…

fluxion,

That silly, obviously they’re using VFIO so they can use a userspace sound card driver written in bash

perishthethought,

Mmmm, so tinny

Diplomjodler,

Just because you can doesn’t mean you should.

christos,
@christos@lemmy.world avatar

Of course, next time I feel like writing a script, I will make sure that I let you know first, and get your approval.

darcy,
@darcy@sh.itjust.works avatar

respectfully, why did you write it in bash? for the challenge?

christos,
@christos@lemmy.world avatar

This script could might as well be an one-liner. It was simple and easy.

ndonkersloot,

Yeah right, that’s what my co-worker said writing the most obscure bash scripts… *looks at code Ah, it is easy and well structured indeed. Nice :-) .

christos,
@christos@lemmy.world avatar

I know this feeling! However this script in its essence is quite simple…

rivalary,

Maybe simple to Chris Angel and his magic.

christos,
@christos@lemmy.world avatar

Try this, it is less pretty, but in essence, the same:


<span style="color:#323232;">cat ~/.cache/radion/stations.txt |fzf|awk '{print $1}'|xargs mpv
</span><span style="color:#323232;">
</span>
rivalary,

Sorry, I was mainly trying to say, “Good job, it’s impressive!” Your name is close to the name of a famous magician, so I was referring to your code as magic. Bit of a dumb joke.

christos,
@christos@lemmy.world avatar

Hey, I am glad you like it ;)

Diplomjodler,

That’s the least you can do.

christos,
@christos@lemmy.world avatar

I like how people I don’t know insist on telling me what to do. Actually, I like the part where I ignore them.

Diplomjodler,

Dude, I was trying to be funny. Feel absolutely free to ignore me.

christos,
@christos@lemmy.world avatar

Oh, no problem 😀

z3rOR0ne,
@z3rOR0ne@lemmy.ml avatar

Very cool. You might want to crosspost this to c/bash on lemmy.ml

luthis,

No metal, blues, or dnb option?

christos,
@christos@lemmy.world avatar

De gustibus et coloribus…

Each user can create add and enjoy any tag and station they like!

christos,
@christos@lemmy.world avatar

Through the script you could go to https://www.radio-browser.info/search?page=1&order=clickcount&reverse=true&hidebroken=true&tagList=metal, pick the stations you fancy and headbang yourself unconscious… 🎸 🤘

GBU_28, (edited )

Hmm soma has that

Maeve,

In bash? Impressive!

folkrav,

My first thought every time I see a pure bash project: “wow” followed by “but… why”.

I get that we have bash on most machines, reducing dependencies, all that jazz. But it’s so painful to do anything nontrivial with it. There are so many small potential papercuts and edge cases, I’d rather pull my teeth out with a pair of pliers than code more than a simple script in it.

Maeve,

That’s why it’s impressive. It’s not easy.

folkrav,

Oh, for sure, but to me it’s “building a car with a screwdriver” impressive. It’s impressive that the feat is doable at all, but why one would subject themselves to this eludes me haha.

Maeve,

Some people just have a natural affinity, I guess. If it made the programmer happy and it’s not full of maliciously exploitable bugs, why not?

folkrav,

Oh, for sure! But I’m a developer myself, so like most of us, I tend to take my technical opinions as gospel by default 😉

Sometimes it can be fun to push your limits or see how far you can go down some personally motivated rabbit hole. Just saying, I’d never do it with bash myself. Don’t get me wrong, I write bash scripts all the damn time, but the second it gets more complicated than aligning a handful of simple commands without too much output parsing BS, requiring some obscure awk one liner nobody understands after 2 days, I bail out to something less awkward.

Dran_Arcana,

My entire homelab env is written in “pure bash”. Bare metal deployments, creation, build, deployment, update, and backup, of docker containers (which are also just convenience wrappers around other pure bash projects of mine.). Etc…

I do it because I got sick of losing data, work, workflow or convenience to black boxes I didn’t create myself. Hell, even with my third party projects like Plex I have a lot of bash automation around extracting playlists from the internal sqlite db, etc. It really shifts your perspective on what’s possible when you build things by hand yourself.

folkrav,

I’ve been working as a dev for 8+ years, been programming for much longer. Yes, many things are possible with bash. Many things are also possible using straight assembly, but nobody does that - for good reasons…

Many of those problems you mentioned have well established, open source solutions that should not end up in lost work or data. Building things yourself also has the downside of maintaining those things, and dealing with your own (inevitable) failures yourself too. I’d rather trust established solutions for things as complex as provisioning than roll my own. But whatever works for you.

If I were to write that much code by hand, I’d just choose something saner than bash, purely from a language perspective. That’s all.

Dran_Arcana,

It’s not like I don’t use open source solutions, I use docker for example rather than automating chroots/cgroups by hand in bash. I just use them as little as possible. While you’re correct, I don’t lose data in a well designed open source project, I do lose work, workflow, and convenience when those projects change or shut down. What’s really nice about the pure bash solutions is they’re entirely portable once you have them dialed in. If I wanted to switch from docker back to vms or forward to something like harvester/rancher/k3s I’d be able to port the projects very trivially. If I built everything around one of those projects in mind, all of my work would rely on it not changing. I acknowledge it’s sometimes a little more work but it’s work that I get to decide when to do, not when the project maintainers decide it for me.

shino,
@shino@lemmy.shinomoroll.net avatar

Everything is not pure bash here, it’s a radio frontend for mpv. It is also using sed, awk… A standard bash use case actually.

dragnet,

Keep in mind that what you find painful, some people find fun :)

tdawg,

Not to mention the tool isn’t meant to be anything more than glue between other programs

Qkall,

This looks crazy promising for us sxmo users … I’ll def check this out.

christos,
@christos@lemmy.world avatar

I must admit I had to look sxmo up…

thx!

Qkall,

How can we connect… I’m having weird graphical issues… But I might be drunk and missing something. Tomorrow morning I’ll send a video

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • uselessserver093
  • Food
  • [email protected]
  • aaaaaaacccccccce
  • test
  • CafeMeta
  • testmag
  • MUD
  • RhythmGameZone
  • RSS
  • dabs
  • oklahoma
  • Socialism
  • KbinCafe
  • TheResearchGuardian
  • SuperSentai
  • feritale
  • KamenRider
  • All magazines