initialize file, jukebox All

This commit is contained in:
Aaron 2025-10-20 19:10:46 -04:00
parent 63b76aaf0a
commit 449f353747

25
^ Jukebox A 🎵.NSP Normal file
View File

@ -0,0 +1,25 @@
{
"title": "-Jukebox All ;)",
"comment": "The highest rated music on random, discounting recently played.",
"any": [
{ "all": [
{"is": {"rating": 3}},
{"notInTheLast": {"lastPlayed": 90}},
]},
{ "all": [
{"is": {"rating": 4}},
{"notInTheLast": {"lastPlayed": 30}}
]},
{ "all": [
{"is": {"rating": 5}},
{"notInTheLast": {"lastPlayed": 15}}
]},
{ "all": [
{"is": {"loved": true}},
{"notInTheLast": {"lastPlayed": 10}}
]}
],
"sort": "lastPlayed",
"order": "asc",
"limit": 1000
}