aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2013-07-25 09:13:15 +0200
committerChristian Hesse <mail@eworm.de>2013-07-25 09:13:15 +0200
commit389c123beb48dab2c8a179b86e4f697b6bbd6c4d (patch)
treece78363bdd6a0c297b6c6d3a8de0ebc7e0bd55fe /config.def.h
parentbuild an install documentation (diff)
downloadmpd-notification-389c123beb48dab2c8a179b86e4f697b6bbd6c4d.tar.gz
mpd-notification-389c123beb48dab2c8a179b86e4f697b6bbd6c4d.tar.bz2
mpd-notification-389c123beb48dab2c8a179b86e4f697b6bbd6c4d.tar.xz
mpd-notification-389c123beb48dab2c8a179b86e4f697b6bbd6c4d.tar.zst
mpd-notification-389c123beb48dab2c8a179b86e4f697b6bbd6c4d.zip
introduce config.h
Diffstat (limited to '')
-rw-r--r--config.def.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
new file mode 100644
index 0000000..0047f7d
--- /dev/null
+++ b/config.def.h
@@ -0,0 +1,11 @@
+/* name of the icon used for notifications */
+#define ICON_SOUND "sound"
+
+/* strings used to display notification messages
+ * TEXT_PLAY needs to include three '%s', in order:
+ * title, artist, album */
+#define TEXT_TOPIC "MPD Notification"
+#define TEXT_PLAY "Playing <b>%s</b>\nby <i>%s</i>\nfrom <i>%s</i>"
+#define TEXT_PAUSE "Paused playback"
+#define TEXT_STOP "Stopped playback"
+#define TEXT_UNKNOWN "(unknown)"