-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsongza.sh
executable file
·30 lines (27 loc) · 1.01 KB
/
songza.sh
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
#!/bin/bash
TEMP=$(tempfile)
while true; do
dialog \
--backtitle "Songza - Listen to Music Curated by Music Experts" \
--title "Select a playlist to listen to" \
--clear \
--radiolist "Select a playlist to listen to" 20 60 24 \
"1399111" "Downtempo Instrumentals" off \
"1396729" "American Campfire" off \
"1382736" "Bedroom Chillout" off \
"1399759" "Mellow Miles" off \
"1398535" "Margaritaville" off \
"1472493" "Ambient Bass" off \
"1744730" "Grandpa's Naptime" off \
"1724146" "Lush Electronic Yoga" off \
"1754151" "90s Gone Country" off \
"1407663" "Alt Songs from '90s Movies" off \
"1392507" "90s Alt Rock Ballads" off \
"1379367" "The soulful Touch of Muscle Shoals" off \
"1771056" "Never-ending Soul" off \
"1412009" "The World of Grateful Dead" off \
"1385346" "Essential Jam Bands" off \
"1380616" "3am Airport" off \
2> $TEMP || exit
pyza -v $(cat $TEMP) 2>&1 | dialog --progressbox 20 100
done