userspace-installation-maid/.local/bin/radio

11 lines
210 B
Plaintext
Raw Normal View History

2024-07-29 13:18:04 -04:00
#!/bin/sh
if [ $1 == "start" ]
then
mpv https://ycradio.stream.publicradio.org/ycradio.aac &
echo "$!" > ~/.local/share/mpv/radio
elif [ $1 == "stop" ]
then
kill $(cat ~/.local/share/mpv/radio)
fi