03-29-2019, 09:55 AM
in mean time you can ssh to moode and use this to add n last days
pi@moode:~$ cat .bash_profile
function add-recents {
find /media -type f -mtime -$1 | sed 's/\/media/USB/g' | mpc add
}
then 'add-recents 60' adds last 60 days off music
pi@moode:~$ cat .bash_profile
function add-recents {
find /media -type f -mtime -$1 | sed 's/\/media/USB/g' | mpc add
}
then 'add-recents 60' adds last 60 days off music