-
Notifications
You must be signed in to change notification settings - Fork 0
/
sfm
executable file
·52 lines (49 loc) · 843 Bytes
/
sfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
station=""
if [[ -z ${1} ]]; then
echo "please provide a station"
exit 0
fi
case ${1} in
ds)
station="deepspaceone.pls";;
dz)
station="dronezone.pls";;
gc)
station="gsclassic.pls";;
g)
station="groovesalad.pls";;
l)
station="lush.pls";;
m)
station="metal.pls";;
dc)
station="defcon.pls";;
ss)
station="spacestation.pls";;
u8)
station="u80s.pls";;
f)
station="fluid.pls";;
b)
station="beatblender.pls";;
db)
station="dubstep.pls";;
v)
station="vaporwaves.pls";;
r)
station="reggae256.pls";;
su)
station="sonicuniverse.pls";;
sn)
station="synphaera256.pls";;
tt)
station="thetrip.pls";;
7)
station="seventies.pls";;
th)
station="thistle.pls";;
*)
station="${1}.pls";;
esac
#cvlc -I lua https://somafm.com/${station}
vlc -I lua https://somafm.com/${station}