2009-02-25 00:50:30 +01:00
|
|
|
#ifndef _CONFIG_H
|
|
|
|
#define _CONFIG_H
|
|
|
|
|
|
|
|
typedef struct Config Config;
|
|
|
|
extern Config config;
|
|
|
|
|
|
|
|
struct Config {
|
|
|
|
const char *terminal;
|
|
|
|
const char *font;
|
|
|
|
};
|
|
|
|
|
2009-04-07 19:02:07 +02:00
|
|
|
/**
|
|
|
|
* Reads the configuration from ~/.i3/config or /etc/i3/config if not found.
|
|
|
|
*
|
|
|
|
* If you specify override_configpath, only this path is used to look for a
|
|
|
|
* configuration file.
|
|
|
|
*
|
|
|
|
*/
|
2009-03-04 09:16:18 +01:00
|
|
|
void load_configuration(const char *override_configfile);
|
2009-02-25 00:50:30 +01:00
|
|
|
|
|
|
|
#endif
|