gri3-wm/include/config.h

39 lines
749 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 Colortriple {
char border[8];
char background[8];
char text[8];
};
2009-02-25 00:50:30 +01:00
struct Config {
const char *terminal;
const char *font;
2009-05-29 16:33:48 +02:00
/* Color codes are stored here */
struct config_client {
struct Colortriple focused;
struct Colortriple focused_inactive;
struct Colortriple unfocused;
} client;
struct config_bar {
struct Colortriple focused;
struct Colortriple unfocused;
} bar;
2009-02-25 00:50:30 +01: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.
*
*/
void load_configuration(const char *override_configfile);
2009-02-25 00:50:30 +01:00
#endif