2009-05-30 16:22:58 -04:00
|
|
|
/*
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
*
|
|
|
|
* (c) 2009 Michael Stapelberg and contributors
|
|
|
|
*
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
*
|
|
|
|
* include/config.h: Contains all structs/variables for
|
|
|
|
* the configurable part of i3
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-02-24 18:50:30 -05:00
|
|
|
#ifndef _CONFIG_H
|
|
|
|
#define _CONFIG_H
|
|
|
|
|
2009-06-01 10:19:06 -04:00
|
|
|
#include "queue.h"
|
|
|
|
|
2009-02-24 18:50:30 -05:00
|
|
|
typedef struct Config Config;
|
|
|
|
extern Config config;
|
|
|
|
|
2009-05-30 16:20:32 -04:00
|
|
|
struct Colortriple {
|
2009-06-01 09:14:45 -04:00
|
|
|
uint32_t border;
|
|
|
|
uint32_t background;
|
|
|
|
uint32_t text;
|
2009-05-30 16:20:32 -04:00
|
|
|
};
|
|
|
|
|
2009-06-01 10:19:06 -04:00
|
|
|
struct Variable {
|
|
|
|
char *key;
|
|
|
|
char *value;
|
|
|
|
|
|
|
|
SLIST_ENTRY(Variable) variables;
|
|
|
|
};
|
|
|
|
|
2009-02-24 18:50:30 -05:00
|
|
|
struct Config {
|
2009-05-30 16:22:58 -04:00
|
|
|
const char *terminal;
|
|
|
|
const char *font;
|
2009-05-29 10:33:48 -04:00
|
|
|
|
2009-05-30 16:22:58 -04: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-24 18:50:30 -05:00
|
|
|
};
|
|
|
|
|
2009-04-07 13:02:07 -04: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-06-01 09:14:45 -04:00
|
|
|
void load_configuration(xcb_connection_t *conn, const char *override_configfile);
|
2009-02-24 18:50:30 -05:00
|
|
|
|
|
|
|
#endif
|