11 lines
210 B
Bash
Executable File
11 lines
210 B
Bash
Executable File
#!/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
|