summaryrefslogtreecommitdiff
path: root/apps/tagnavi.config
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagnavi.config')
-rw-r--r--apps/tagnavi.config19
1 files changed, 12 insertions, 7 deletions
diff --git a/apps/tagnavi.config b/apps/tagnavi.config
index 2b00d59e1c..285f826425 100644
--- a/apps/tagnavi.config
+++ b/apps/tagnavi.config
@@ -1,11 +1,16 @@
1"Artists" artist : album : title 1"Artists" artist : album : title = "%02d. %s" tracknum title
2"Albums" album : title 2"Albums" album : title = "%02d. %s" tracknum title
3"Genres" genre : artist : album : title 3"Genres" genre : artist : album : title = "%02d. %s" tracknum title
4"Composers" composer : album : title 4"Composers" composer : album : title = "%02d. %s" tracknum title
5"Tracks" title 5"Tracks" title
6"Search by artist" artist ? artist ~ "" : album : title 6"Search by artist" artist ? artist ~ "" : album : title = "%02d. %s" tracknum title
7"Search by album" album ? album ~ "" : title 7"Search by album" album ? album ~ "" : title = "%02d. %s" tracknum title
8"Search by title" title ? title ~ "" 8"Search by title" title ? title ~ ""
9"Search by year" artist ? year = "" : album : title 9"Search by year" artist ? year = "" : album : title = "%02d. %s" tracknum title
10"Search by score" title = "(%3d) %s" autoscore title ? autoscore > ""
11"Most played tracks" title = "(%d) %s" playcount title ? playcount > "1"
12"Never played tracks" artist ? playcount == "0" : album : title = "%02d. %s" tracknum title
13"Best tracks" title ? autoscore > "60" & playcount > "1"
10"Example 1" artist ? year >= "2000" & artist ^ "a" : album : title 14"Example 1" artist ? year >= "2000" & artist ^ "a" : album : title
11"Example 2" genre ? genre ~ "metal" : artist ? year >= "2000" : album ? year >= "2000" : title 15"Example 2" genre ? genre ~ "metal" : artist ? year >= "2000" : album ? year >= "2000" : title
16"List played tracks" title = "(%3d/%d) %s" autoscore playcount title ? playcount > "0"