mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-11-18 01:13:31 +01:00
24 lines
469 B
Text
24 lines
469 B
Text
|
#!/bin/bash
|
||
|
# Listen to a jamendo stream
|
||
|
|
||
|
MPLAYER='mplayer'
|
||
|
URL='http://streaming.radionomy.com/Jam'
|
||
|
# Stream can be: Rock, Electro, Pop, Jazz, Lounge, Classical, Relaxation, Folk, Metal, Indie, HipHop, Country
|
||
|
|
||
|
STREAMS="Rock Electro Pop Jazz Lounge Classical Relaxation Folk Metal Indie HipHop Country"
|
||
|
|
||
|
if [ -z $1 ]
|
||
|
then
|
||
|
echo "What do you want to listen to:"
|
||
|
select STREAM in $STREAMS;
|
||
|
do
|
||
|
STREAM=$STREAM
|
||
|
break
|
||
|
done
|
||
|
else
|
||
|
STREAM=$1
|
||
|
fi
|
||
|
|
||
|
|
||
|
$MPLAYER "$URL$STREAM"
|