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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
|
#!/usr/bin/env bash
shopt -s globstar
# check for config files
if [[ ! -f $HOME/.config/clerk/config ]] && [[ ! -f /etc/clerk ]]; then
echo "Error: could not find configuration file \"$HOME/.config/clerk/config\""
echo "You can use the provided example configuration file (config.clerk), copy it to the above location and edit it to your needs."
exit
fi
# read global config, if present
if [[ -f /etc/clerk ]]; then
source /etc/clerk
fi
# read local config file
if [[ -f $HOME/.config/clerk/config ]]; then
source $HOME/.config/clerk/config
fi
# check for clerk_helper config. Create if needed.
if [[ -f $HOME/.config/clerk/helper_config ]]; then
:
else
echo "[global]" > $HOME/.config/clerk/helper_config
echo "separator = " $separator "" >> $HOME/.config/clerk/helper_config
echo "music_path = "$music_path"" >> $HOME/.config/clerk/helper_config
echo " " >> $HOME/.config/clerk/helper_config
echo "[updater]" >> $HOME/.config/clerk/helper_config
echo "change_db = xxx" >> $HOME/.config/clerk/helper_config
fi
echo "$backend"
# check for scrobbler
if [[ $scrobbler == mpdas ]]; then
export scrobbler="mpdas -d"
export scrobbler_kill="mpdas"
elif [[ $scrobbler == mpdscribble ]]; then
export scrobbler_kill="mpdscribble"
fi
# check if clerk_helper process is running. if it isn't update cache files, if
# needed
if [[ $(ps x| grep clerk_helper | head -1 | grep -v 'grep') ]]; then
:
else
clerk_helper update &
fi
export separator="$separator"
# load cache files into variables to speed up access
loadCacheAlbums () {
if [[ -f $HOME/.config/clerk/albums.cache.json ]]; then
album_temp=$(clerk_helper getAlbums)
fi
}
loadCacheLatest () {
if [[ -f $HOME/.config/clerk/albums.cache.json ]]; then
last_temp=$(clerk_helper getLatest | awk -F "${separator}" '{ print $1 ENVIRON["separator"] $2 ENVIRON["separator"] $3 }')
fi
}
loadCacheTracks () {
if [[ -f $HOME/.config/clerk/tracks.cache.json ]]; then
#tracks_temp=$(cat $HOME/.config/clerk/tracks.cache)
tracks_temp=$(clerk_helper getTracks)
fi
}
# Use GNU coreutils on OSX
sed=$([[ "$OSTYPE" == "darwin"* ]] && echo 'gsed' || echo 'sed')
shuf=$([[ "$OSTYPE" == "darwin"* ]] && echo 'gshuf' || echo 'shuf')
tac=$([[ "$OSTYPE" == "darwin"* ]] && echo 'gtac' || echo 'tac')
updateCache() {
rm -f $HOME/.config/clerk/*.cache
clerk_helper createcache
}
# main Menu
dplayPrompt () {
if [[ -z $(mpc status | grep "/") ]]; then
song="No Song is playing"
else
song=$(mpc current)
fi
menu=("Q Exit Clerk"
"---"
"1 Play random Album"
"2 Play random Songs"
"---"
"3 Current Artist"
"4 Current Queue"
"5 Browse Library"
"6 Manage Playlists"
"---"
"7 Options"
"8 Ratings"
"9 Lookup")
menu=$(printf "%s\n" "${menu[@]}" | rofi -dmenu -lines 17 -mesg "<span color='$help_color'>${toggle}: Toggle Playback, ${prev}: Prev, ${next}: Next, ${stop}: Stop</span>" -p "Now Playing: ${song} > ")
val=$?
if [[ $val -eq 10 ]]; then
mpc toggle
dplayPrompt
elif [[ $val -eq 11 ]]; then
mpc prev
dplayPrompt
elif [[ $val -eq 12 ]]; then
mpc next
dplayPrompt
elif [[ $val -eq 13 ]]; then
mpc stop
dplayPrompt
fi
if [[ "$menu" == "Q Exit Clerk" ]]; then
exit
elif [[ "$menu" == "1 Play random Album" ]]; then
playRandomAlbum
elif [[ "$menu" == "2 Play random Songs" ]]; then
playRandomTracks
elif [[ "$menu" == "3 Current Artist" ]]; then
currentMenu
elif [[ "$menu" == "4 Current Queue" ]]; then
dplayQueue
elif [[ "$menu" == "5 Browse Library" ]]; then
browseLibPrompt
elif [[ "$menu" == "6 Manage Playlists" ]]; then
managePlaylists
elif [[ "$menu" == "7 Options" ]]; then
dplayOptionsPrompt
elif [[ "$menu" == "8 Ratings" ]]; then
ratingPrompt
elif [[ "$menu" == "9 Lookup" ]]; then
infoPrompt
elif [[ -z "$menu" ]]; then
exit
fi
}
# start/stop scrobbler. locally or remote
lastFM () {
# Some Variables to clean up the code
if [[ $ssh_lastfm == 1 ]]; then
mpds_check="$(ssh $ssh_host -q -t "pgrep $scrobbler_kill")"
if [ -n "$mpds_check" ];
then
ssh $ssh_host -q -t "killall $scrobbler_kill" && notify-send "MPD" "LastFM Scrobbling Disabled"
else
ssh $ssh_host -q "$scrobbler" && notify-send "MPD" "LastFM Scrobbling Enabled"
fi
else
if pgrep $scrobbler_kill
then
killall $scrobbler_kill && notify-send "MPD" "LastFM Scrobbling Disabled"
else
$scrobbler && notify-send "MPD" "LastFM Scrobbling Enabled"
fi
fi
}
lastFMCheck () {
# Some Variables to clean up the code
if ((ssh_lastfm)); then
mpds_check="$(ssh $ssh_host -q -t "pgrep $scrobbler_kill")"
if [ -n "$mpds_check" ]; then
echo "lastfm: off"
else
echo "lastfm: on"
fi
else
if pgrep $scrobbler_kill
then
echo "lastfm: on"
else
echo "lastfm: off"
fi
fi
}
# function to browse local filesystem.
# Only works, if music_dir is accessible locally
browseFilesystem () {
usefile() {
realpath="$(realpath "$selection")"
MPD_HOST="$mpd_socket" mpc add ""file://"$realpath"""
}
comboadd() {
for i in **/*.{mp3,ogg,flac,wma,mp4,aac,mpc,m4a,wv}; do
realpath="$(realpath "$i")"
MPD_HOST="$mpd_socket" mpc add ""file://"$realpath"""
done
}
chose() {
if [[ -d "$selection" ]]; then
cd "$selection"
dirs="$(find . -maxdepth 1 \( ! -regex '.*/\..*' \) -type d | cut -c 3- | sort -u)"
files="$(find -maxdepth 1 -type f -regex ".*/.*\.\(flac\|mp3\|ogg\|m4a\|wav\|wv\|mpc\|wma\|aac\)" | cut -c 3- | sort -u)"
selection="$(echo -e "0 Return to Library Menu\n---\n1 Add all music files\n---\n..$(echo "$dirs")\n$(echo "$files")" | dmenu_t -p "$(realpath .) > ")"
chose
elif [[ "$selection" == "1 Add all music files" ]]; then
comboadd
elif [[ "$selection" == "0 Return to Library Menu" ]]; then
browseLibPrompt
elif [[ "$selection" == "" ]]; then
exit
else usefile
fi
}
cd ~
dirs="$(find . -maxdepth 1 \( ! -regex '.*/\..*' \) -type d | cut -c 3- | sort -u)"
files="$(find -maxdepth 1 -type f -regex ".*/.*\.\(flac\|mp3\|ogg\|m4a\|wav\|wv\|mpc\|wma\|aac\)" | cut -c 3- | sort -u)"
selection="$(echo -e "0 Return to Library Menu\n---\n1 Add all music files\n---\n..$(echo "$dirs")\n$(echo "$files")" | dmenu_t -p "$(realpath .) > ")"
chose
}
# Show Albums and Tracks by currently playing artist
currentMenu () {
albums=$(clerk_helper getartistalbums "$(mpc current -f '%artist%')")
titles=$(clerk_helper getartisttracks "$(mpc current -f '%artist%')")
if [[ -z $(mpc current) ]]; then
menu=$(echo -e "0 Return to Main Menu" | rofi -dmenu -p "No Music is playing")
else
current=$(mpc current -f '%artist%')
menu=("0 Return to Main Menu"
"---"
"$albums"
"---"
"$titles")
fi
menu_temp=$(printf "%s\n" "${menu[@]}" | rofi -dmenu -format "f:s" -filter "$filter" -select "$entry" -mesg "<span color='$help_color'>${add}: Add, ${insert}: Insert, ${replace}: Replace</span>" -p "Other Music by ${current} > ")
# for some reason directly defining $val wasnt working. Using a
# temporary variable instead.
tempval=$?
val=$tempval
menu="${menu_temp#*:}"
albumartist=$(mpc current -f '%albumartist%')
artist=$(mpc current -f '%artist%')
unset filter
export filter="${menu_temp%:*}"
# checking for exit codes.
if [[ $menu == "(Album)"* ]]; then
if [[ $val -eq 11 ]]; then
mpc find album "$(echo "$menu" | awk -F "$separator" '{ print $2 }')" artist "${artist}" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == on ]]; then
mpc playlist -f "%position% $separator %artist% $separator %album%" | grep "$album" | grep "$albumartist" | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos - 1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$menu"
elif [[ $val -eq 0 || $val -eq 12 ]]; then
mpc clear
mpc find album "$(echo ${menu} | awk -F "$separator" '{ print $2 }')" artist "${artist}" | mpc add
mpc play
entry="$menu"
elif [[ $val -eq 10 ]]; then
mpc find album "$(echo ${menu} | awk -F "$separator" '{ print $2 }')" artist "${artist}" | mpc add
entry="$menu"
elif [[ $val -eq 1 ]]; then
exit
fi
currentMenu
elif [[ $menu == "(Song)"* ]]; then
if [[ $val -eq 11 ]]; then
mpc find track "$(echo ${menu} | awk -F ') ' '{ print $2 }' | awk -F "$separator" '{ print $1 }')" title "$(echo "$menu" | awk -F "$separator" '{ print $2 }')" artist "${artist}" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
title="$(echo "$menu" | awk -F "$separator" '{ print $2 }')"
if [[ $random == "on" ]]; then
mpc playlist -f "%position% $separator %artist% $separator %title%" | grep "$title" | grep "$artist" | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos -1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$menu"
elif [[ $val -eq 12 ]]; then
mpc clear
mpc find track "$(echo ${menu} | awk -F ') ' '{ print $2 }' | awk -F "$separator" '{ print $1 }')" title "$(echo "$menu" | awk -F "$separator" '{ print $2 }')" artist "${artist}" | mpc add
mpc play
entry="$menu"
elif [[ $val -eq 0 || $val -eq 10 ]]; then
mpc find track "$(echo ${menu} | awk -F ') ' '{ print $2 }' | awk -F "$separator" '{ print $1 }')" title "$(echo "$menu" | awk -F "$separator" '{ print $2 }')" artist "${artist}" | mpc add
entry="$menu"
elif [[ $val -eq 1 ]]; then
exit
fi
currentMenu
elif [[ -z "$menu" ]]; then
exit
elif [[ "$menu" == "${add}: Add, ${insert}: Insert, ${replace}: Replace" ]]; then
currentMenu
elif [[ $menu == "0 Return to Main Menu" ]]; then
dplayPrompt
fi
}
# rating menu
ratingPrompt () {
menu=("Q Return to Main Menu"
"---"
"1 Rate current Album"
"2 Load Rated Albums"
"3 Load Random Rated Album"
"---"
"4 Rate current Track"
"5 Load Rated Tracks"
"6 Load Random Rated Tracks"
"---"
"7 Love current Song on LastFM"
"---"
"0 Backup/Restore")
prompt() {
printf "%s\n" "$@" | dmenu_t -p "Ratings > "
}
case "$(prompt "${menu[@]}")" in
1*) rateAlbum ;;
2*) loadRatedAlbums ;;
3*) loadRandomRating ;;
4*) rateTrack ;;
5*) loadRatedTracks ;;
6*) loadRandomRatedTracks ;;
7*) loveLast ;;
0*) backupPrompt ;;
Q*) dplayPrompt ;;
*) exit
esac
}
# create rating json files from mpd sticker database and vice versa
backupPrompt () {
menu=("0 Return to Ratings Menu"
"---"
"1 Backup Album Ratings to File"
"2 Backup Track Ratings to File"
"---"
"3 Restore Ratings from File")
prompt() {
printf "%s\n" "$@" | dmenu_t -p "Backup/Restore > "
}
case "$(prompt "${menu[@]}")" in
1*) clerk_helper importalbumratings & ;;
2*) clerk_helper importtrackratings & ;;
3*) clerk_helper sendstickers & ;;
0*) ratingPrompt ;;
*) exit
esac
}
# if mpdas is used use mpc to love track on last.fm. otherwise try
# lastfm-mpd-cli
loveLast () {
if [[ "$scrobbler" == "mpdscribble" ]]; then
lastfm-mpd-cli love > /dev/null && notify-send "MPD" "Loved $(mpc current -f '%title%') on LastFM" && exit
elif [[ "$scrobbler" == "mpdas" ]]; then
mpc sendmessage mpdas love
fi
}
infoPrompt () {
menu=("0 Return to Main Menu"
"---"
"1 Artist Info"
"2 Album Info"
"3 Current Track Lyrics"
"4 Current Track Tags")
prompt() {
printf "%s\n" "$@" | dmenu_t -p "MPD Menu > "
}
case "$(prompt "${menu[@]}")" in
# 1*) surfraw yubnub allmusic $(mpc current -f %artist%) ;;
1*) artistinfo ;;
2*) surfraw yubnub allmusic $(mpc current -f %album%) && exit;;
# 3*) surfraw yubnub google $(mpc current -f %title%) $(mpc current -f %artist%) lyrics ;;
3*) lyrics ;;
4*) currentTag ;;
0*) dplayPrompt ;;
*) exit
esac
}
lyrics () {
rm -f $HOME/.config/clerk/current.txt
glyrc lyrics -a "$(mpc current --format '%artist%')" -t "$(mpc current --format '%title%')" -w "$HOME/.config/clerk/current.txt"
fold "$HOME/.config/clerk/current.txt" -w 50 -s | dmenu_t -p "$(mpc current --format '%artist% - %title%') Lyrics >"
}
artistinfo () {
rm -f $HOME/.config/clerk/artist.txt
glyrc artistbio -a "$(mpc current --format '%artist%')" -w "$HOME/.config/clerk/artist.txt"
fold "$HOME/.config/clerk/artist.txt" -s -w 50 | dmenu_t -p "$(mpc current --format '%artist% - %title%') Lyrics >"
}
currentTag () {
declare -i seen=0
while read line
do
seen=1
if [[ "$line" == "0 Return to Main Menu" ]]; then
dplayPrompt
elif [[ "$line" == "Show all Tags" ]]; then
readComments
elif [[ "$line" == "" ]]; then
return
fi
done < <(echo -e "0 Return to Main Menu\n---\nShow all Tags\n---\n$(mpc current --format "Artist: %artist%\nAlbum: %album%\nDate: %date%\nTrack: %track%\nTitle: %title%")" | dmenu_t -p 'Current Song > ')
if [[ $seen = 0 ]]
then
exit
fi
}
# read all tags from file. Note that mpd can only read vorbiscomment properly
readComments () {
declare -i seen=0
while read line
do
seen=1
if [[ "$line" == "0 Return to Main Menu" ]]; then
dplayPrompt
elif [[ "$line" == "Show Tags" ]]; then
currentTag
elif [[ "$line" == "" ]]; then
return
fi
done < <(echo -e "0 Return to Main Menu\n---\nShow Tags\n---\n$(mpc current --format '%file%' | clerk_helper readcomments)" | dmenu_t -p 'Current Song > ')
if [[ $seen = 0 ]]
then
exit
fi
}
# Messy options menu.
dplayOptionsPrompt () {
# define variables to be used in menu
export status="$(mpc status)"
single=$(echo "$status" | tail -1 | awk -F ':' '{ print $5 }' | cut -d ' ' -f 2)
random=$(echo "$status" | tail -1 | awk -F ':' '{ print $4 }' | cut -d ' ' -f 2)
consume=$(echo "$status" | tail -1 | awk -F ':' '{ print $6 }' | cut -d ' ' -f 2)
repeat=$(echo "$status" | tail -1 | awk -F ':' '{ print $3 }' | cut -d ' ' -f 2)
if [[ -a /tmp/mpd-sima.pid ]]; then
export sima=on
else
export sima=off
fi
if [[ "$ssh_lastfm" == "1" ]]; then
mpds_check="$(ssh $ssh_host -q -t "pgrep $scrobbler_kill")"
if [ -n "$mpds_check" ];
then export scrobble=on
else export scrobble=off
fi
else
if pgrep $scrobbler_kill
then
export scrobble=on
else
export scrobble=off
fi
fi
export rgain="$(mpc replaygain | cut -d ' ' -f 2)"
replayGain () {
if [[ $(mpc replaygain | cut -d ' ' -f 2) == album ]]; then
mpc replaygain track > /dev/null && export rgain="track"
elif [[ $(mpc replaygain | cut -d ' ' -f 2) == track ]]; then
mpc replaygain off > /dev/null && export rgain="off"
elif [[ $(mpc replaygain | cut -d ' ' -f 2) == off ]]; then
mpc replaygain album > /dev/null && export rgain="album"
fi
}
menu=("Q Return to Main Menu"
"---"
"1 Random: $(echo $random)"
"2 Repeat: $(echo $repeat)"
"3 Single Mode: $(echo $single)"
"4 Consume Mode: $(echo $consume)"
"5 Replaygain: $(echo $rgain)"
"6 Scrobbling: $(echo $scrobble)"
"7 Similar Artists Mode: $(echo $sima)"
"---"
"8 Set Crossfade $(mpc crossfade | cut -d ':' -f2)"
"9 Manage Outputs"
"0 Number of Random Songs: $(echo $value)")
prompt() {
printf "%s\n" "$@" | dmenu_t -p "MPD Options > "
}
case "$(prompt "${menu[@]}")" in
1*) mpc random && dplayOptionsPrompt ;;
2*) mpc repeat && dplayOptionsPrompt ;;
3*) mpc single && dplayOptionsPrompt ;;
4*) mpc consume && dplayOptionsPrompt ;;
5*) replayGain && dplayOptionsPrompt ;;
6*) lastFM && dplayOptionsPrompt ;;
7*) mpdSima && dplayOptionsPrompt ;;
8*) crossfadePrompt ;;
9*) outputPrompt ;;
0*) optionRandomPrompt ;;
Q*) dplayPrompt ;;
*) exit
esac
}
# toggle similar artist playback
mpdSima () {
if [[ -a /tmp/mpd-sima.pid ]]; then
kill $(cat /tmp/mpd-sima.pid)
sleep 1
else
mpd-sima -d -p /tmp/mpd-sima.pid
sleep 1
fi
}
# function to change number of random songs in config file
optionRandomPrompt() {
number="$(echo " " | dmenu_t -p 'Set No. of Songs for random Songs > ')"
$sed -i "s/value=.*/value="$number"/" $HOME/.config/clerk/config
export value="$number"
dplayOptionsPrompt
}
crossfadePrompt () {
menu=("0: Return to Main Menu"
"---"
"0"
"1"
"2"
"3"
"4"
"5")
prompt() {
printf "%s\n" "$@" | dmenu_t -p "Crossfade > "
}
case "$(prompt "${menu[@]}")" in
0) mpc crossfade 0 && dplayOptionsPrompt ;;
1) mpc crossfade 1 && dplayOptionsPrompt ;;
2) mpc crossfade 2 && dplayOptionsPrompt ;;
3) mpc crossfade 3 && dplayOptionsPrompt ;;
4) mpc crossfade 4 && dplayOptionsPrompt ;;
5) mpc crossfade 5 && dplayOptionsPrompt ;;
0:*) dplayOptionsPrompt ;;
*) exit
esac
}
managePlaylists () {
menu=("0 Return to Main Menu"
"---"
"1 Load Playlist"
"2 Save Playlist"
"3 Load RSS Feed"
"4 Crop Playlist"
"---"
"5 Suspend Playlist"
"6 Resume Playlist"
"---"
"7 Clear Playlist")
prompt() {
printf "%s\n" "$@" | dmenu_t -p "Crossfade > "
}
case "$(prompt "${menu[@]}")" in
0*) dplayPrompt ;;
1*) dplayQueueLoad ;;
2*) dplayQueueSave ;;
3*) loadRSS ;;
4*) mpc crop && dplayQueue ;;
5*) suspendPlaylist ;;
6*) resumePlaylist ;;
7*) mpc clear ;;
*) exit
esac
}
# read list of available podcasts. Not using mpd playlists, because mpd does
# not support custom names for urls. format of podcast in file is "Name \ URL"
loadRSS () {
mpc clear
podcast=$(echo -e "0 Return to Playlist Menu\n---\n$(cat $HOME/.config/clerk/podcasts | cut -d '\' -f1)" | dmenu_t -p "Choose Podcast > ")
if [[ $podcast == "0 Return to Playlist Menu" ]]; then
managePlaylists
else
mpc load $(grep "$podcast" $HOME/.config/clerk/podcasts | cut -d '\' -f2)
episode=$(mpc playlist --format "%position%$separator%artist%$separator%title%" | dmenu_t -p "Choose Episode > ")
POS=$(echo "$episode" | awk -F "$separator" '{ print $1 }')
mpc play "$POS"
fi
}
# suspend current playlist. playlist, song id and play-position are saved to
# $HOME/.config/clerk/suspend
suspendPlaylist () {
playing=$(! mpc status | grep 'playing\|paused')
time=$(mpc status | $sed '2!d;s;/.:.*;;;s;.* ;;')
position=$(mpc current --format '%position%')
if [[ -z "$playing" ]]; then
notify-send "clerk" "mpd is not playing, no state to suspend"
else
mpc rm suspended
mpc save suspended
rm -f $HOME/.config/clerk/suspend
echo "pos="$position"" >> $HOME/.config/clerk/suspend
echo "time="$time"" >> $HOME/.config/clerk/suspend
if [[ "$stop_after_suspend" == yes ]]; then
mpc stop
else
echo " "
fi
notify-send "Clerk" "Playlist suspended"
managePlaylists
fi
}
# read $HOME/.config/clerk/suspend and restore playlist. Then start playing
# from same position that was saved in suspend file
resumePlaylist () {
http=$(! mpc current --format %file% | grep 'http://')
source $HOME/.config/clerk/suspend
mpc clear
mpc load suspended
mpc play $pos
mpc toggle
sleep 2
mpc seek "$time"
mpc toggle
notify-send "Clerk" "Resumed last-suspended Playlist"
managePlaylists
}
# Play or delete items from current Queue
dplayQueue () {
while true; do
if [[ -z $POS ]]; then
TRACKDISPLAY=("0 Return to Main Menu"
"---"
"$(mpc playlist --format "%position%$separator%artist%$separator%track%$separator%title%$separator%album%")")
else
# check if POS is a number. if it is, add 4 to it. POS is later
# exported from song ID in playlist.
re='^[0-9]+$'
if [[ "$POS" =~ $re ]]; then
POS=$(( $POS + 2 ))
else
POS=0
fi
TRACKDISPLAY=("0 Return to Main Menu"
"---"
"$(mpc playlist --format "%position%$separator%artist%$separator%track%$separator%title%$separator%album%")")
fi
TRACKDISPLAY=$(printf "%s\n" "${TRACKDISPLAY[@]}" | rofi -dmenu -l $POS -mesg "<span color='$help_color'>${play}: Play, ${delete}: Delete, ${rate}: Rate</span>" -p "Current Queue > ")
tempval=$?
val=$tempval
TITLE=$(echo "$TRACKDISPLAY" | awk -F "$separator" '{ print $4 }')
ARTIST=$(echo "$TRACKDISPLAY" | awk -F "$separator" '{ print $2 }')
ALBUM=$(echo "$TRACKDISPLAY" | awk -F "$separator" '{ print $5 }')
TRACK=$(echo "$TRACKDISPLAY" | awk -F "$separator" '{ print $3 }')
export POS=$(echo "$TRACKDISPLAY" | awk -F "$separator" '{ print $1 }')
if [[ "$TRACKDISPLAY" == "0 Return to Main Menu" ]]; then
dplayPrompt
elif [[ -z "$TRACKDISPLAY" ]]; then
exit
elif [[ "$TRACKDISPLAY" == "${play}: Play, ${delete}: Delete" ]]; then
dplayQueue
else
if [[ $val -eq 11 ]]; then
mpc del $POS
POS=$(( $POS - 1))
elif [[ $val -eq 0 || $val -eq 10 ]]; then
mpc play $POS;
elif [[ $val -eq 13 ]]; then
rateartist="${ARTIST}" ratealbum="${ALBUM}" ratetrack="${TRACK}" ratetitle="${TITLE}" rateTrack
fi
fi
done
}
# show all mpd playlists and load them to queue
dplayQueueLoad () {
playlist=$(echo -e "0 Return to Playlist Menu\n---\n$(mpc lsplaylists)" | dmenu_t -p "Load Playlist > ")
if [[ "$playlist" == "0 Return to Playlist Menu" ]]; then
managePlaylists
else
mpc clear
mpc load "$playlist" && dplayQueue
fi
}
# save current playlist to playlist file.
dplayQueueSave () {
while read playlists
do
if [[ "$playlists" == "0 Return to Main Menu" ]]; then
dplayPrompt
elif [[ "$playlists" == "Save new Playlist" ]]; then
playlist=$(echo "" | dmenu_t -p "Type Name for Playlist > ")
if [[ "$playlist" == "" ]]; then
dplayQueueSave
else
mpc save "$playlist"
dplayQueue
fi
else
playlist=$(echo -e "0 Return to Playlist Menu\n---\nYes\nNo" | dmenu_t -p "Overwrite Playlist? > ")
if [[ "$playlist" == "Yes" ]]; then
mpc rm "$playlists"
mpc save "$playlists"
elif [[ "$playlist" == "No" ]]; then
playlist=$(echo "" | dmenu_t -p "Type Name for Playlist > ")
if [[ "$playlist" == "" ]]; then
dplayQueue
else
mpc save "$playlist"
dplayQueue
fi
fi
fi
done < <(echo -e "0 Return to Main Menu\n---\nSave new Playlist\n---\n$(mpc lsplaylists)" | dmenu_t -p "Choose Playlist > ")
exit
}
# enable/disable outputs
outputPrompt () {
menu="$(echo -e "0 Return to Options Menu\n---\n$(mpc outputs)" | dmenu_t -p "Outputs > ")";
if [[ "$menu" == "0 Return to Options Menu" ]]
then dplayOptionsPrompt;
else
mpc toggleoutput $(echo "$menu" | awk '{print $2}');
notify-send "MPD" "$(echo "$menu" | $sed -e 's/enabled$/disabled/;ta;s/disabled$/enabled/;:a;')";
fi
}
# rate any album
rateAlbum () {
rating="$(seq 10 | dmenu_t -p "Select Album Rating: > ")"
if [[ $rating == "" ]]; then
exit
else
# check if rateartist was defined, if it wasn't use currently playing
# track for rating, otherwise use what was delivered in the rate*
# variables.
if [[ -z "$rateartist" ]]; then
artist=$(mpc current -f '%artist%')
album=$(mpc current -f '%album%')
date=$(mpc current -f '%date%')
if [[ -n $(mpc find track "1" albumartist "${artist}" album "${album}" date "${date}") ]]; then
track="1"
else
track="01"
fi
disc=$(mpc current -f '%disc%')
export disc=${disc}; export track=${track}; clerk_helper ratealbum "${artist}" "${album}" "${date}" "${rating}"
notify-send "clerk" "rated ${artist} - ${album} with ${rating}"
else
export disc=${disc}; export track=${track}; clerk_helper ratealbum "${rateartist}" "${ratealbum}" "${ratedate}" "${rating}"
notify-send "clerk" "rated ${rateartist} - ${ratealbum} with ${rating}"
fi
fi
}
rateTrack () {
rating="$(seq 10 | dmenu_t -p "Select Track Rating: > ")"
if [[ $rating == "" ]]; then
exit
else
if [[ -z "$rateartist" ]]; then
export rating=${rating}
rateartist=$(mpc current -f '%artist%')
ratetitle=$(mpc current -f '%title%')
ratetrack=$(mpc current -f '%track%')
ratealbum=$(mpc current -f '%album%')
clerk_helper ratetrack "${rateartist}" "${ratealbum}" "${ratetrack}" "${ratetitle}" "${rating}"
notify-send "clerk" "rated $(mpc current) with $(echo ${rating})"
else
clerk_helper ratetrack "${rateartist}" "${ratealbum}" "${ratetrack}" "${ratetitle}" "${rating}"
notify-send "clerk" "rated ${rateartist} - ${ratetitle} with $(echo ${rating})"
fi
fi
}
# function to instantly rate a track without a submenu. rating is defined on
# commandline
instantRateTrack () {
rateartist=$(mpc current -f '%artist%')
ratetitle=$(mpc current -f '%title%')
ratetrack=$(mpc current -f '%track%')
ratealbum=$(mpc current -f '%album%')
export rating=$1
clerk_helper ratetrack "${rateartist}" "${ratealbum}" "${ratetrack}" "${ratetitle}" "${rating}"
notify-send "clerk" "rated ${rateartist} - ${ratetitle} with $(echo ${rating})"
}
# load rated albums with minimum rating of xx
loadRatedAlbums () {
rating="$(seq 10 | dmenu_t -p "Minimum Rating > ")"
if [[ $rating == "" ]]; then
exit
else
albums="$(while read -a line; do
dirname "${line[*]}";
done <<< "$(mpc sticker "" find albumrating | grep -E "albumrating=$rating")" | $sed 's/\/\CD.*//g' | sort | uniq | dmenu_t -p "Choose Album > ")"
if [[ $albums == "" ]]; then
exit
else
mpc clear && mpc add "$albums" && mpc play
fi
fi
}
loadRatedTracks () {
rating="$(seq 10 | dmenu_t -p "Rating > ")"
if [ rating = "" ]; then
exit
else
cd $HOME/.config/clerk
mpc clear
songs="$(mpc sticker "" find rating | awk -F 'rating=' '{ print $2 }')"
echo "$songs" | mpc add
mpc play
fi
}
loadRandomRatedTracks () {
number="$(echo " " | dmenu_t -p "Number of Songs > " | xargs echo)"
rating="$(seq 10 | dmenu_t -p "Minimum Rating > ")"
if [ rating = "" ]; then
exit
else
cd $HOME/.config/clerk
mpc clear
songs="$(mpc sticker "" find rating | grep -E "rating=$rating|rating=$(echo $(( $rating + 1 )))|rating=$(echo $(( $rating + 2 )))|rating=$(echo $(( $rating + 3 )))|rating=$(echo $(( $rating + 4 )))" | awk -F ':' '{ print $1 }')"
echo "$songs" | $shuf -n $number | mpc add
mpc play
rm -f /tmp/clerk_tracklist
fi
}
loadRandomRating () {
rating="$(seq 10 | dmenu_t -p "Minimum Rating > ")"
if [ rating = "" ]; then
exit
else
album="$(while read -a line; do
dirname "${line[*]}";
done <<< "$(mpc sticker "" find albumrating | grep -E "albumrating=$rating|albumrating=$(echo $(( $rating+1 )))|albumrating=$(echo $(( $rating+2 )))|albumrating=$(echo $(( $rating+3 )))|albumrating=$(echo $(( $rating+4 )))|albumrating=$(echo $(( $rating+5 )))|albumrating=$(echo $(( $rating+6 )))")" | $sed 's/\/\CD.*//g' | $shuf -n1)"
mpc clear && mpc add "$album" && mpc play
fi
}
# load random album. Make sure to make each sub item random. this way each
# artist has equal chances of being played, no matter how many albums it has.
playRandomAlbum () {
mpc clear > /dev/null
artist="$(mpc list "albumartist" | $shuf -n 1)"
album="$(mpc list album "albumartist" "$artist" | $shuf -n 1)"
mpc find album "$album" "albumartist" "$artist" | mpc add && mpc play > /dev/null
}
# same for tracks, no artist should be preferred because it has more tracks.
playRandomTracks () {
mpc clear > /dev/null
artist="$(mpc list "$random_artist" | $shuf -n 1)"
album="$(mpc list album "$random_artist" "$artist" | $shuf -n 1)"
title="$(mpc list title album "$album" "$random_artist" "$artist" | $shuf -n 1)"
mpc find album "$album" "$random_artist" "$artist" title "$title" | mpc add
mpc play > /dev/null
n=0; while (( n++ < $value -1 ));
do
artist="$(mpc list "$random_artist" | $shuf -n 1)"
album="$(mpc list album "$random_artist" "$artist" | $shuf -n 1)"
title="$(mpc list title album "$album" "$random_artist" "$artist" | $shuf -n 1)"
mpc find album "$album" "$random_artist" "$artist" title "$title" | mpc add
done
mpc play > /dev/null
exit
}
addLastMod() {
if [[ -z $last_temp ]]; then
loadCacheLatest
else
echo "re-using album list from memory"
fi
menu="0 Return to Main Menu
---
${last_temp}"
TRACK_TEMP=$(echo -e "${menu}" | dmenu_t -dmenu -select "$entry" -filter "$filter" -format "f:s" -mesg "<span color='$help_color'>${add}: Add, ${insert}: Insert, ${replace}: Replace (Default)</span>" -p "Choose Album > ")
val=$?
TRACK="${TRACK_TEMP#*:}"
unset filter
export filter="${TRACK_TEMP%:*}"
if [[ "$TRACK" == "0 Return to Main Menu" ]]
then dplayPrompt
elif [[ -z "$TRACK" ]]; then
exit
elif [[ "$TRACK" == "${add}: Add, ${insert}: Insert, ${replace}: Replace (Default)" ]]; then
addLastMod
else
artist=$(echo "$TRACK" | awk -F "$separator" '{print $2}')
date=$(echo "$TRACK" | awk -F "$separator" '{print $1}')
album=$(echo "$TRACK" | awk -F "$separator" '{print $3}')
if [[ $val -eq 11 ]]; then
mpc search date "$date" album "$album" albumartist "$artist" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == on ]]; then
mpc playlist -f "%position% $separator %artist% $separator %album% $separator %date%" | grep "$album" | grep "$date" | grep $artist | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos - 1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$TRACK"
elif [[ $val -eq 0 || $val -eq 12 ]]; then
echo "return code is 13"
mpc clear && mpc search date "$date" album "$album" albumartist "$artist" | mpc add
mpc play
entry="$TRACK"
elif [[ $val -eq 10 ]]; then
mpc search date "$date" album "$album" albumartist "$artist" | mpc add
entry="$TRACK"
elif [[ $val -eq 1 ]]; then
exit
fi
addLastMod
fi
}
AddAlbumTags() {
if [[ -z $album_temp ]]; then
loadCacheAlbums
export album_temp=${album_temp}
echo "\$album_temp not set, reading..."
else
export album_temp=${album_temp}
echo "Re-Using \$album_temp"
fi
menu="0 Return to Main Menu
---
${album_temp}"
TRACK_TEMP=$(echo -e "${menu}" | dmenu_t -dmenu -filter "$filter" -select "$entry" -format "f:s" -mesg "<span color='#0C73C2'>${add}: Add, ${insert}: Insert, ${replace}: Replace (Default), ${rate}: Rate</span>" -p "Choose Album > ")
val=$?
TRACK="${TRACK_TEMP#*:}"
unset filter
export filter="${TRACK_TEMP%:*}"
if [[ "$TRACK" == "0 Return to Main Menu" ]]; then
dplayPrompt
elif [[ -z "$TRACK" ]]; then
exit
elif [[ "$TRACK" == "${add}: Add, ${insert}: Insert, ${replace}: Replace (Default), ${rate}: Rate" ]]; then
unset line
AddAlbumTags
else
artist=$(echo "$TRACK" | awk -F "$separator" '{print $1}')
date=$(echo "$TRACK" | awk -F "$separator" '{print $2}')
album=$(echo "$TRACK" | awk -F "$separator" '{print $3}')
if [[ $val -eq 11 ]]; then
mpc find date "$date" album "$album" albumartist "$artist" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == on ]]; then
mpc playlist -f "%position% $separator %artist% $separator %album% $separator %date%" | grep "$album" | grep "$date" | grep $artist | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos - 1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$TRACK"
elif [[ $val -eq 0 || $val -eq 12 ]]; then
echo "return code is 2"
mpc clear && mpc find date "$date" album "$album" albumartist "$artist" | mpc add
mpc play
entry="$TRACK"
elif [[ $val -eq 13 ]]; then
if [[ -n $(mpc find -f '%disc%' albumartist "${artist}" album "${album}" date "${date}") ]]; then
disc=$(mpc find -f '%disc%' albumartist "${artist}" album "${album}" date "${date}" | head -1)
else
disc=""
fi
if [[ -n $(mpc find track "1" albumartist "${artist}" album "${album}" date "${date}") ]]; then
track="1"
else
track="01"
fi
disc=${disc} track=${track} rateartist="${artist}" ratealbum="${album}" ratedate="${date}" rateAlbum
entry="$TRACK"
elif [[ $val -eq 10 ]]; then
mpc search date "$date" album "$album" albumartist "$artist" | mpc add
entry="$TRACK"
elif [[ $val -eq 1 ]]; then
exit
fi
AddAlbumTags
fi
}
AddTrackTags() {
if [[ -z $tracks_temp ]]; then
loadCacheTracks > /dev/null
else
echo "re-using track list from memory"
# unset tracks_temp
# export tracks_temp=${tracks_temp} > /dev/null
fi
menu="0 Return to Main Menu
---
${tracks_temp}"
TRACK_TEMP=$(echo -e "$menu" | dmenu_t -dmenu -filter "$filter" -select "$entry" -format "f:s" -mesg "<span color='$help_color'>${add}: Add, ${insert}: Insert, ${replace}: Replace (Default), ${rate}: Rate</span>" -p "Choose Track > ")
val=$?
TRACK="${TRACK_TEMP#*:}"
unset filter
export filter="$(echo ${TRACK_TEMP} | awk -F ':' '{ print $1}')"
if [[ "$TRACK" == "0 Return to Main Menu" ]]
then dplayPrompt
elif [[ -z "$TRACK" ]]; then
exit
elif [[ "$TRACK" == "${add}: Add | ${insert}: Insert | ${replace}: Replace | ${rate}: Rate" ]]; then
AddTrackTags
else
artist=$(echo "$TRACK" | awk -F "$separator" '{print $1}')
album=$(echo "$TRACK" | awk -F "$separator" '{print $4}')
track=$(echo "$TRACK" | awk -F "$separator" '{print $2}')
title=$(echo "$TRACK" | awk -F "$separator" '{print $3}')
if [[ $val -eq 11 ]]; then
mpc find artist "$artist" album "$album" title "$title" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == "on" ]]; then
mpc playlist -f "%position% $separator %artist% $separator %title%" | grep "$title" | grep "$artist" | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos -1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$TRACK"
elif [[ $val -eq 12 ]]; then
mpc clear
mpc findadd artist "$artist" album "$album" title "$title"
mpc play
entry="$TRACK"
elif [[ $val -eq 0 || $val -eq 10 ]]; then
mpc findadd artist "$artist" album "$album" title "$title"
if [[ "$add_auto_play" == yes ]]; then
mpc play $(mpc playlist | wc -l)
entry="$TRACK"
fi
elif [[ $val -eq 13 ]]; then
rateartist="${artist}" ratealbum="${album}" ratetrack="${track}" ratetitle="${title}" rateTrack
entry="$TRACK"
elif [[ $val -eq 1 ]]; then
exit
fi
AddTrackTags
fi
}
browseDate() {
date=$(echo -e "0 Return to Browse Menu\n---\n$(mpc list date | $tac)" | dmenu_t -dmenu -p "Choose Date > ")
if [[ "$date" == "0 Return to Browse Menu" ]]
then browseLibPrompt
else
browseDateAdd
fi
}
browseDateAdd() {
HELP="<span color='$help_color'>${add}: Add Album | ${insert}: Insert Album | ${replace}: Replace Album
${addall}: Add All | ${insertall}: Insert All | ${replaceall}: Replace All</span>"
menu=("0 Return to Date Menu"
"---"
"$(mpc --format "%albumartist%$separator%album%" find date "$date" | uniq)")
if [[ -z $line ]]; then
select_temp=$(printf "%s\n" "${menu[@]}" | rofi -dmenu -format "i:s" -mesg "${HELP}" -p "Select Album > ")
else
select_temp=$(printf "%s\n" "${menu[@]}" | rofi -dmenu -l $(( $line + 1 )) -format "i:s" -mesg "${HELP}" -p "Select Album > ")
fi
val=$?
select="${select_temp#*:}"
unset line
export line="${select_temp%:*}"
echo "$line"
artist=$(echo "$select" | awk -F "$separator" '{print $1}')
album=$(echo "$select" | awk -F "$separator" '{print $2}')
if [[ "$val" -eq 13 ]]; then
mpc findadd date "$date"
browseDateAdd
elif [[ "$val" -eq 15 ]]; then
mpc clear && mpc findadd date "$date" && mpc play
browseDateAdd
elif [[ "$val" -eq 14 ]]; then
mpc find date "$date" | mpc insert
browseDateAdd
fi
if [[ "$select" == "0 Return to Date Menu" ]]
then browseDate
else
if [[ "$val" -eq 10 ]]; then
mpc findadd date "$date" artist "$artist" album "$album"
browseDateAdd
elif [[ "$val" -eq 11 ]]; then
mpc find date "$date" artist "$artist" album "$album" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == on ]]; then
mpc playlist -f "%position% $separator %artist% $separator %album% $separator %date%" | grep "$album" | grep "$date" | grep $artist | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos - 1 ))
clerk_helper prio < <(echo "$pos")
done
fi
browseDateAdd
elif [[ "$val" -eq 12 || "$val" -eq 0 ]]; then
mpc clear && mpc findadd date "$date" artist "$artist" album "$album" && mpc play
browseDateAdd
elif [[ "$val" -eq 1 ]]; then
exit
fi
fi
}
browseLibPrompt() {
menu=("Q Return to Main Menu"
"---"
"1 Browse by Artist"
"2 Browse by Albumartist"
"3 Browse by Date"
"4 Browse by Genre"
"5 Browse latest additions"
"---"
"6 Choose Albums"
"7 Choose Track"
"---"
"0 Update Album/Track Cache")
prompt() {
printf "%s\n" "$@" | dmenu_t -p "Library Menu > "
}
case "$(prompt "${menu[@]}")" in
1*) browseArtist ;;
2*) browseAlbumArtist ;;
3*) browseDate ;;
4*) browseGenre ;;
6*) AddAlbumTags ;;
7*) AddTrackTags ;;
0*) updateCache && browseLibPrompt ;;
Q*) dplayPrompt ;;
5*) addLastMod ;;
*) exit
esac
}
browseAlbum() {
HELP="<span color='$help_color'>${add}: Add Album | ${insert}: Insert Album | ${replace}: Replace Album (Default)
${addall}: Add All | ${insertall}: Insert All | ${replaceall}: Replace All</span>"
ALBUMS=$(mpc list album artist "$ARTIST")
ALBUM=("0 Return to Artist Menu"
"---"
"$(mpc --format "%date%$separator%album%" find artist "$ARTIST" | sort | uniq)")
ALBUM_TEMP=$(printf "%s\n" "${ALBUM[@]}" | dmenu_t -dmenu -select "$entry" -filter "$filter" -format "f:s" -mesg "${HELP}" -p "Choose Album > ")
val=$?
ALBUM="${ALBUM_TEMP#*:}"
unset filter
export filter="${ALBUM_TEMP%:*}"
ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
unset line
export line="${ALBUM_TEMP%:*}"
if [[ "$val" -eq 10 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc find artist "$ARTIST" date "$DATE" album "$ALBUM_FINAL" | mpc add
entry="$ALBUM_FINAL"
browseAlbum
elif [[ "$val" -eq 11 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc find artist "$ARTIST" date "$DATE" album "$ALBUM_FINAL" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == on ]]; then
mpc playlist -f "%position% $separator %artist% $separator %album% $separator %date%" | grep "$ALBUM_FINAL" | grep "$DATE" | grep "$ARTIST" | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos - 1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$ALBUM_FINAL"
browseAlbum
elif [[ "$val" -eq 12 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc clear
mpc find artist "$ARTIST" date "$DATE" album "$ALBUM_FINAL" | mpc add
mpc play
entry="$ALBUM_FINAL"
browseAlbum
elif [[ "$val" -eq 15 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc clear && mpc find artist "$ARTIST" | mpc add && mpc play
entry="$ALBUM_FINAL"
elif [[ "$val" -eq 13 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc find artist "$ARTIST" | mpc add
entry="$ALBUM_FINAL"
elif [[ "$val" -eq 14 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc find artist "$ARTIST" | mpc insert
entry="$ALBUM_FINAL"
elif [[ "$val" -eq 0 ]]; then
if [[ "$ALBUM" == "0 Return to Artist Menu" ]]; then
browseArtist
else
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
browseTrack
fi
elif [[ "$val" -eq 1 ]]; then
exit
fi
exit
}
browseAlbumArtistAlbum() {
HELP="<span color='$help_color'>${add}: Add Album | ${insert}: Insert Album | ${replace}: Replace Album (Default)
${addall}: Add All | ${insertall}: Insert All | ${replaceall}: Replace All</span>"
ALBUMS=$(mpc list album albumartist "$ARTIST")
ALBUM=("0 Return to Artist Menu"
"---"
"$(mpc --format "%date%$separator%album%" find albumartist "$ARTIST" | sort | uniq)")
ALBUM_TEMP=$(printf "%s\n" "${ALBUM[@]}" | dmenu_t -filter "$filter" -select "$entry" -dmenu -format "f:s" -mesg "${HELP}" -p "Choose Album > ")
val=$?
ALBUM="${ALBUM_TEMP#*:}"
ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
unset filter
export filter="${ALBUM_TEMP%:*}"
if [[ "$val" -eq 10 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc find albumartist "$ARTIST" date "$DATE" album "$ALBUM_FINAL" | mpc add
entry="$ALBUM_FINAL"
browseAlbumArtistAlbum
elif [[ "$val" -eq 11 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc find albumartist "$ARTIST" date "$DATE" album "$ALBUM_FINAL" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == on ]]; then
mpc playlist -f "%position% $separator %artist% $separator %album% $separator %date%" | grep "$ALBUM_FINAL" | grep "$DATE" | grep "$ARTIST" | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos - 1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$ALBUM_FINAL"
browseAlbumArtistAlbum
elif [[ "$val" -eq 12 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc clear
mpc find albumartist "$ARTIST" date "$DATE" album "$ALBUM_FINAL" | mpc add
mpc play
entry="$ALBUM_FINAL"
browseAlbumArtistAlbum
elif [[ "$val" -eq 15 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc clear && mpc find albumartist "$ARTIST" | mpc add && mpc play
entry="$ALBUM_FINAL"
elif [[ "$val" -eq 13 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc find albumartist "$ARTIST" | mpc add
entry="$ALBUM_FINAL"
elif [[ "$val" -eq 14 ]]; then
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
mpc find albumartist "$ARTIST" | mpc insert
entry="$ALBUM_FINAL"
elif [[ "$val" -eq 0 ]]; then
if [[ "$ALBUM" == "0 Return to Artist Menu" ]]; then
browseAlbumArtist
else
export ALBUM_FINAL=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
export DATE=$(echo "$ALBUM" | awk -F "$separator" '{ print $1 }')
entry="$ALBUM_FINAL"
browseAlbumArtistTrack
fi
elif [[ "$val" -eq 1 ]]; then
exit
fi
exit
}
browseTrack() {
HELP="<span color='$help_color'>${add}: Add Track (Default) | ${insert}: Insert Track | ${replace}: Replace Track
${addall}: Add All | ${insertall}: Insert All | ${replaceall}: Replace All</span>"
TRACK=("0 Return to Album Menu"
"---"
"$(mpc --format "%track%$separator%title%" find artist "$ARTIST" album "$ALBUM_FINAL")")
TRACK_TEMP=$(printf "%s\n" "${TRACK[@]}" | dmenu_t -filter "$filter" -select "$entry" -dmenu -mesg "${HELP}" -format "f:s" -p "Choose Track > ")
val=$?
TRACK="${TRACK_TEMP#*:}"
TRACKFINAL=$(echo "$TRACK" | awk -F "$separator" '{ print $2 }')
unset filter
export filter="${TRACK_TEMP%:*}"
if [[ "$val" -eq 10 ]]; then
mpc find artist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc add
entry="$TRACK_TEMP"
browseTrack
elif [[ "$val" -eq 11 ]]; then
mpc find artist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == "on" ]]; then
mpc playlist -f "%position% $separator %artist% $separator %title% $separator %date%" | grep "$TRACKFINAL" | grep "$ARTIST" | grep "$DATE" | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos -1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$TRACK_TEMP"
browseTrack
elif [[ "$val" -eq 12 ]]; then
mpc clear
mpc find artist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc add
mpc play
entry="$TRACK_TEMP"
browseTrack
elif [[ "$val" -eq 15 ]]; then
mpc clear && mpc find artist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" |mpc add && mpc play
entry="$TRACK_TEMP"
elif [[ "$val" -eq 13 ]]; then
mpc find artist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" | mpc add
entry="$TRACK_TEMP"
elif [[ "$val" -eq 14 ]]; then
mpc find artist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" | mpc insert
entry="$TRACK_TEMP"
elif [[ "$val" -eq 1 ]]; then
exit
elif [[ "$val" -eq 0 ]]; then
if [[ "$TRACK" = "0 Return to Album Menu" ]]; then
browseAlbum
else
if [[ -z $(mpc playlist) ]]; then
mpc find artist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc add && mpc play
else
mpc find artist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc add
fi
fi
fi
}
browseArtist() {
ARTIST=$(echo -e "0 Return to Browse Menu\n---\n$(mpc list artist)" | dmenu_t -dmenu -p "Choose Artist > ")
val=$?
export ARTIST="$ARTIST"
if [[ "$ARTIST" == "0 Return to Browse Menu" ]]; then
browseLibPrompt
elif [[ "$val" -eq 0 ]]; then
export ARTIST="$ARTIST"
browseAlbum
elif [[ "$val" -eq 1 ]]; then
exit
fi
}
browseAlbumArtistTrack() {
HELP="<span color='$help_color'>${add}: Add Track (Default) | ${insert}: Insert Track | ${replace}: Replace Track
${addall}: Add All | ${insertall}: Insert All | ${replaceall}: Replace All</span>"
TRACK=("0 Return to Album Menu"
"---"
"$(mpc --format "%track%$separator%title%" find albumartist "$ARTIST" album "$ALBUM_FINAL")")
TRACK_TEMP=$(printf "%s\n" "${TRACK[@]}" | dmenu_t -filter "$filter" -select "$entry" -dmenu -mesg "${HELP}" -format "i:s" -p "Choose Track > ")
val=$?
TRACK="${TRACK_TEMP#*:}"
TRACKFINAL=$(echo "$TRACK" | awk -F "$separator" '{ print $2 }')
unset filter
export filter="${TRACK_TEMP%:*}"
if [[ "$val" -eq 10 ]]; then
mpc find albumartist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc add
entry="$TRACK_TEMP"
browseAlbumArtistTrack
elif [[ "$val" -eq 11 ]]; then
mpc find albumartist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc insert
random=$(mpc status | tail -1 | awk '{ print $6 }')
if [[ $random == "on" ]]; then
mpc playlist -f "%position% $separator %artist% $separator %title% $separator %date%" | grep "$TRACKFINAL" | grep "$ARTIST" | grep "$DATE" | while read tracks; do
pos=$(echo "$tracks" | awk -F " $separator " '{ print $1 }')
pos=$(( $pos -1 ))
clerk_helper prio < <(echo "$pos")
done
fi
entry="$TRACK_TEMP"
browseAlbumArtistTrack
elif [[ "$val" -eq 12 ]]; then
mpc clear
mpc find albumartist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc add
mpc play
entry="$TRACK_TEMP"
browseAlbumArtistTrack
elif [[ "$val" -eq 15 ]]; then
mpc clear && mpc find albumartist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" |mpc add && mpc play
entry="$TRACK_TEMP"
elif [[ "$val" -eq 13 ]]; then
mpc find albumartist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" | mpc add
entry="$TRACK_TEMP"
elif [[ "$val" -eq 14 ]]; then
mpc find albumartist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" | mpc insert
entry="$TRACK_TEMP"
elif [[ "$val" -eq 1 ]]; then
exit
elif [[ "$val" -eq 0 ]]; then
if [[ "$TRACK" = "0 Return to Album Menu" ]]; then
entry="$TRACK_TEMP"
browseAlbumArtistAlbum
else
if [[ -z $(mpc playlist) ]]; then
mpc find albumartist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc add && mpc play
else
mpc find albumartist "$ARTIST" album "$ALBUM_FINAL" date "$DATE" title "$TRACKFINAL" | mpc add
fi
fi
fi
}
browseAlbumArtist() {
ARTIST=$(echo -e "0 Return to Browse Menu\n---\n$(mpc list albumartist)" | dmenu_t -dmenu -p "Choose Artist > ")
val=$?
export ARTIST="$ARTIST"
if [[ "$ARTIST" == "0 Return to Browse Menu" ]]; then
browseLibPrompt
elif [[ "$val" -eq 0 ]]; then
export ARTIST="$ARTIST"
browseAlbumArtistAlbum
elif [[ "$val" -eq 1 ]]; then
exit
fi
}
browseGenre() {
declare -i seen=0
while read GENRE
do
seen=1
export GENRE="$GENRE"
if [[ "$GENRE" == "0 Return to Main Menu" ]]
then dplayPrompt
else
browseGenre2
fi
done < <(echo -e "0 Return to Main Menu\n---\n$(mpc list genre)" | dmenu_t -dmenu -p "Choose Genre > ")
if [[ $seen = 0 ]]
then
exit
fi
}
browseGenre2() {
declare -i seen=0
while read ALBUM
do
seen=1
export GENRE="$GENRE"
if [[ "$ALBUM" == "0 Return to Genre Menu" ]]
then browseGenre
elif [[ "$ALBUM" == "Replace All" ]]
then mpc clear && mpc findadd genre "$GENRE" && mpc play
elif [[ "$ALBUM" == "Add All" ]]
then mpc findadd genre "$GENRE"
elif [[ "$ALBUM" == "Insert All" ]]
then mpc find genre "$GENRE" | mpc insert
else
ALBUM=$(echo "$ALBUM" | awk -F "$separator" '{ print $2 }')
mpc findadd album "$ALBUM" genre "$GENRE" && mpc play
fi
done < <(echo -e "0 Return to Genre Menu\n---\nAdd All\nInsert all\nReplace all\n---\n$(mpc search genre "$GENRE" --format "{albumartist}$separator{album}$separator({date})" | sort | uniq)" | dmenu_t -dmenu -p "Choose Album > ")
if [[ $seen = 0 ]]
then
exit
fi
}
saveAlbumToPlaylist() {
declare -i seen=0
while read TRACK
do
seen=1
if [[ "$TRACK" == "0 Return to Main Menu" ]]
then dplayPrompt
else
artist=$(echo "$TRACK" | awk -F "$separator" '{print $1}')
date=$(echo "$TRACK" | awk -F "$separator" '{print $2}')
album=$(echo "$TRACK" | awk -F "$separator" '{print $3}')
mpc search date "$date" album "$album" albumartist "$artist" | clerk_helper saveto
fi
done < <(echo -e "0 Return to Main Menu\n---\n$(echo "$album_temp")" | dmenu_t -dmenu -p "Save Album to Playlist > ")
if [[ $seen = 0 ]]
then
exit
fi
}
saveLatestToPlaylist() {
declare -i seen=0
while read TRACK
do
seen=1
if [[ "$TRACK" == "0 Return to Main Menu" ]]
then dplayPrompt
else
artist=$(echo "$TRACK" | awk -F "$separator" '{print $2}')
date=$(echo "$TRACK" | awk -F "$separator" '{print $1}')
album=$(echo "$TRACK" | awk -F "$separator" '{print $3}')
mpc search date "$date" album "$album" albumartist "$artist" | clerk_helper saveto
fi
done < <(echo -e "0 Return to Main Menu\n---\n$(echo "$last_temp")" | dmenu_t -dmenu -p "Save Album to Playlist > ")
if [[ $seen = 0 ]]
then
exit
fi
}
saveTrackToPlaylist() {
declare -i seen=0
while read TRACK
do
seen=1
if [[ "$TRACK" == "0 Return to Main Menu" ]]
then dplayPrompt
else
artist=$(echo "$TRACK" | awk -F "$separator" '{print $1}')
track=$(echo "$TRACK" | awk -F "$separator" '{print $2}')
album=$(echo "$TRACK" | awk -F "$separator" '{print $4}')
title=$(echo "$TRACK" | awk -F "$separator" '{print $5}')
mpc search track "$track" album "$album" title "$title" albumartist "$artist" | clerk_helper saveto
fi
done < <(echo -e "0 Return to Main Menu\n---\n$(echo "$tracks_temp")" | dmenu_t -dmenu -p "Save Track to Playlist > ")
if [[ $seen = 0 ]]
then
exit
fi
}
################################################################################
function dmenu_t () {
rofi -dmenu $(echo "$rofiopts") "$@"
}
while :; do
case $1 in
--add)
if [[ ! $2 ]]; then
echo "Missing argument for --add"
echo "Possible values: track, album, latest"
elif [[ $2 == track ]]; then
AddTrackTags
elif [[ $2 == album ]]; then
AddAlbumTags
elif [[ $2 == latest ]]; then
addLastMod
fi
break
;;
--rate)
if [[ ! $2 ]]; then
echo "Missing arguemtn for --rate"
echo "Possible values: track, album, instant"
echo "Launching rating menu"
ratingPrompt
elif [[ $2 == track ]]; then
rateTrack
elif [[ $2 == album ]]; then
rateAlbum
elif [[ $2 == instant ]]; then
if [[ ! $3 ]]; then
echo "Missing argument for --rate instant"
echo "Please define rating between 1-10"
else
instantRateTrack $3
fi
elif [[ $2 == load ]]; then
mpc clear && mpc sticker "" find rating | grep -E "rating=6|rating=7|rating=8|rating=9|rating=10" | awk -F ':' '{print $1}' | $shuf -n $value | mpc add && mpc play
fi
break
;;
--random)
if [[ ! $2 ]]; then
echo "Missing argument for --random"
echo "Possible values: track, album"
elif [[ $2 == track ]]; then
playRandomTracks
elif [[ $2 == album ]]; then
playRandomAlbum
fi
break
;;
--current)
currentTag
break
;;
--browse)
if [[ ! $2 ]]; then
echo "Missing argument for --browse"
echo "Possible values: artist, date, genre, folder, system"
elif [[ $2 == artist ]]; then
browseArtist
elif [[ $2 == albumartist ]]; then
browseAlbumArtist
elif [[ $2 == date ]]; then
browseDate
elif [[ $2 == genre ]]; then
browseGenre
elif [[ $2 == system ]]; then
browseFilesystem
elif [[ $2 == folder ]]; then
browseFolders
fi
break
;;
--backup)
if [[ ! $2 ]]; then
echo "Missing argument for --backup"
echo "Possible values: track, album"
elif [[ $2 == track ]]; then
backupTrackRatings
elif [[ $2 == album ]]; then
backupAlbumRatings
fi
break
;;
--restore)
if [[ ! $2 ]]; then
echo "Missing argument for --restore"
echo "Possible values: track, album"
elif [[ $2 == track ]]; then
restoreTrackRatings
elif [[ $2 == album ]]; then
restoreAlbumRatings
fi
break
;;
--update)
updateCache
break
;;
--queue)
if [[ ! $2 ]]; then
echo "Missing argument for --queue"
echo "Possible values: show, delete, suspend, resume"
elif [[ $2 == show ]]; then
dplayQueue
elif [[ $2 == delete ]]; then
dplayQueueDelete
elif [[ $2 == suspend ]]; then
suspendPlaylist
elif [[ $2 == resume ]]; then
resumePlaylist
fi
break
;;
--rss)
loadRSS
break
;;
--manage)
managePlaylists
;;
--playlist)
if [[ $2 == savealbum ]]; then
saveAlbumToPlaylist
elif [[ $2 == savelast ]]; then
saveLatestToPlaylist
elif [[ $2 == savetrack ]]; then
saveTrackToPlaylist
fi
break
;;
--lastfm)
if [[ ! $2 ]]; then
echo "Missing argument for --lastfm"
echo "Possible values: toggle, check, love"
elif [[ $2 == toggle ]]; then
lastFM
elif [[ $2 == check ]]; then
lastFMCheck
elif [[ $2 == love ]]; then
if [[ scrobbler=mpdscribble ]]; then
lastfm-mpd-cli love > /dev/null && notify-send "MPD" "Loved $(mpc current -f '%title%') on LastFM"
elif [[ scrobbler=mpdas ]]; then
mpc sendmessage mpdas love
fi
fi
break
;;
--help|-h)
echo "---"
echo "clerk: rofi/dmenu based MPD Interface"
echo "Copyright © 2013 - 2015 Rasmus Steinke"
echo "---"
echo "General"
echo " --help, -h this help message"
echo " --current show currently playing track"
echo " --update update album/track caches"
echo ""
echo "Library"
echo " --add <track, album, latest> adds selection at the end of the queue"
echo " --browse <artist, albumartist, date, genre, folder, system> browse library"
echo " --random <track, album> play random track or album"
echo ""
echo "Playlist"
echo " --queue <show, delete, suspend, resume> manage current queue"
echo " --manage manage playlists"
echo " --playlist <savealbum, savelast, savetrack> save selection to playlist \"clerk\""
echo " --rss load podcast"
echo " (podcast should be placed in ~/.config/clerk/podcasts"
echo " with format NAME \ URL)"
echo ""
echo "Ratings"
echo " --rate <menu, track, album, load, instant ##> rate albums or tracks"
echo " "load" adds random rated tracks to queue"
echo ""
echo " --backup <track, album> restore album or track ratings."
echo " make sure that music_path is set and that it's accessible by clerk"
echo " ONLY USE, WHEN YOUR RATINGS FILES ARE 100% valid!"
echo ""
echo "LastFM"
echo " --lastfm <toggle, check, love> toggle or check last.fm status, love current track"
break
;;
*)
dplayPrompt ;;
esac
shift
done
|