]> git.sur5r.net Git - i3/i3/blob - include/config.h
Add description to screenshot
[i3/i3] / include / config.h
1 #ifndef _CONFIG_H
2 #define _CONFIG_H
3
4 typedef struct Config Config;
5 extern Config config;
6
7 struct Config {
8         const char *terminal;
9         const char *font;
10 };
11
12 void load_configuration(const char *override_configfile);
13
14 #endif