From 8885646e4e9d07b8595c6584e2ea3367f84a6c6b Mon Sep 17 00:00:00 2001 From: user Date: Fri, 27 Dec 2019 08:58:57 +0200 Subject: [PATCH] [modules/mpd] Document supported tags in module docstring --- bumblebee/modules/mpd.py | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/bumblebee/modules/mpd.py b/bumblebee/modules/mpd.py index 1144357..aa1fb92 100644 --- a/bumblebee/modules/mpd.py +++ b/bumblebee/modules/mpd.py @@ -7,7 +7,31 @@ Requires the following executable: * mpc Parameters: - * mpd.format: Format string for the song information. Tag values can be put in curly brackets (i.e. {artist}) + * mpd.format: Format string for the song information. + Supported tags (see `man mpc` for additional information) + * {name} + * {artist} + * {album} + * {albumartist} + * {comment} + * {composer} + * {date} + * {originaldate} + * {disc} + * {genre} + * {performer} + * {title} + * {track} + * {time} + * {file} + * {id} + * {prio} + * {mtime} + * {mdate} + Additional tags: + * {position} - position of currently playing song + not to be confused with %position% mpc tag + * {duration} - duration of currently playing song * mpd.host: MPD host to connect to. (mpc behaviour by default) """