blob: 4edc59de26b1ac7d86e789a7b15cfc27c82574fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef COMET_CONFIG_H
#define COMET_CONFIG_H
#include <stdio.h>
#include "block.h"
typedef struct {
block_t block;
char *font;
char *monitor;
unsigned int height;
unsigned int width;
bool override_redirect;
color_t background;
} config_t;
void config_init(config_t *config);
void config_read(config_t *config, FILE *file);
void config_free(config_t *config);
#endif
|