aboutsummaryrefslogtreecommitdiffstats
path: root/options.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--options.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/options.h b/options.h
index 49af19984..a8ac17981 100644
--- a/options.h
+++ b/options.h
@@ -2,6 +2,8 @@
#define MPD_HOST_ENV "MPD_HOST"
#define MPD_PORT_ENV "MPD_PORT"
+#define NCMPCRC_ENV "NCMPCRC"
+
typedef struct
{
@@ -10,9 +12,21 @@ typedef struct
int reconnect;
int debug;
+ int enable_colors;
+ int bg_color;
+ int title_color;
+ int line_color;
+ int list_color;
+ int progress_color;
+ int status_color;
+ int alert_color;
+
} options_t;
-void options_init(void);
+extern options_t options;
+
+options_t *options_init(void);
options_t *options_parse(int argc, const char **argv);
-options_t *get_options(void);
+
+