gri3-wm/include/config.h

15 lines
218 B
C
Raw Normal View History

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;
};
void load_configuration(const char *override_configfile);
2009-02-25 00:50:30 +01:00
#endif