summaryrefslogtreecommitdiff
path: root/nephilim/plugins/Notify.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/plugins/Notify.py')
-rw-r--r--nephilim/plugins/Notify.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nephilim/plugins/Notify.py b/nephilim/plugins/Notify.py
index 901e936..7906861 100644
--- a/nephilim/plugins/Notify.py
+++ b/nephilim/plugins/Notify.py
@@ -103,7 +103,7 @@ class Notify(Plugin):
# public, read-only
o = None
- DEFAULTS = {'songformat' : '$track - $artist - $title ($album) [$length]',
+ DEFAULTS = {'songformat' : '${track} - ${artist} - ${title} (${album}) [${length}]',
'timer' : 3000}
def _load(self):
@@ -152,7 +152,7 @@ class Notify(Plugin):
self.setLayout(QtGui.QVBoxLayout())
self._add_widget(self.format, 'Format', 'Format of notifications. All tags supported by MPD\n'
'will be expanded to their values for current song,\n'
- 'e.g. $track, $title, $artist, $album, $length, $date, etc.')
+ 'e.g. ${track}, ${title}, ${artist}, ${album}, ${length}, ${date}, etc.')
self._add_widget(self.timer, 'Duration', 'How long should notifications be displayed in ms.')
self.settings.endGroup()