aboutsummaryrefslogtreecommitdiffstats
path: root/src/ncmpc.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ncmpc.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/ncmpc.h b/src/ncmpc.h
index 93e48d541..6bbb745fb 100644
--- a/src/ncmpc.h
+++ b/src/ncmpc.h
@@ -6,9 +6,9 @@
#endif
#ifdef DEBUG
-#define D(x) x
+#define D(x, args...) fprintf(stderr, x, ##args)
#else
-#define D(x)
+#define D(x,...)
#endif
/* i18n */
@@ -35,5 +35,10 @@
/* time in milliseconds before trying to reconnect (int) */
#define MPD_RECONNECT_TIME 1000
+/* song format - list window */
+#define LIST_FORMAT "%name%|[%artist% - ]%title%|%file%"
+
+/* song format - status window */
+#define STATUS_FORMAT "[%artist% - ]%title%|%basename%"
#endif /* NCMPC_H */