blob: 0f9fa13c1105854a0436bfc5a5de6cfe783f0c68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef OPTIONS_H
#define OPTIONS_H
#include "config.h"
#include <stdbool.h>
#define MPD_HOST_ENV "MPD_HOST"
#define MPD_PORT_ENV "MPD_PORT"
typedef struct {
char *host;
char *username;
char *password;
char *config_file;
char *key_file;
char *list_format;
char *status_format;
char *xterm_title_format;
char *scroll_sep;
char **screen_list;
char *timedisplay_type;
int port;
int crossfade_time;
int search_mode;
int hide_cursor;
int seek_time;
int lyrics_timeout;
bool reconnect;
bool debug;
bool find_wrap;
bool find_show_last_pattern;
bool list_wrap;
bool auto_center;
bool wide_cursor;
#ifdef ENABLE_COLORS
bool enable_colors;
#endif
bool audible_bell;
bool visible_bell;
bool enable_xterm_title;
bool enable_mouse;
bool scroll;
bool visible_bitrate;
bool welcome_screen_list;
} options_t;
extern options_t options;
void options_init(void);
void options_parse(int argc, const char **argv);
#endif
|