pipeplayer/config.h

29 lines
584 B
C
Raw Normal View History

2022-08-08 02:42:22 +02:00
#ifndef __CONFIG_H__
#define __CONFIG_H__
#define BITS 8
// Logging options
#include "loglevels.h"
/* 0 - off colors
* 1 - on colors */
#define LOGGING_COLORS 1
// Levels (see log.h)
#define LOGGING_LEVEL INFO
2022-08-14 01:38:42 +02:00
/* 0 - don't show notifications
* 1 - show notification
* You must compile with NOTIFICATION=1 to enable this */
#define NOTIFICATION 1
/* 0 - don't show song number in notifications
* 1 - show song number in notifications */
#define SHOW_NUMBER 1
2022-08-14 01:38:42 +02:00
// Notification information
#define APP_NAME "Pipeplayer"
#define SUMMARY "Pipeplayer"
2022-08-08 02:42:22 +02:00
#endif /* __CONFIG_H__ */