mirror of
https://github.com/i3/i3.git
synced 2026-02-14 18:45:40 +00:00
15 lines
218 B
C
15 lines
218 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
typedef struct Config Config;
|
|
extern Config config;
|
|
|
|
struct Config {
|
|
const char *terminal;
|
|
const char *font;
|
|
};
|
|
|
|
void load_configuration(const char *override_configfile);
|
|
|
|
#endif
|