2009-05-30 22:22:58 +02:00
|
|
|
/*
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
*
|
2009-06-24 20:31:00 +02:00
|
|
|
* © 2009 Michael Stapelberg and contributors
|
2009-05-30 22:22:58 +02:00
|
|
|
*
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
*
|
|
|
|
* include/config.h: Contains all structs/variables for
|
|
|
|
* the configurable part of i3
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-02-25 00:50:30 +01:00
|
|
|
#ifndef _CONFIG_H
|
|
|
|
#define _CONFIG_H
|
|
|
|
|
2009-07-23 18:14:24 +02:00
|
|
|
#include <stdbool.h>
|
2009-06-01 16:19:06 +02:00
|
|
|
#include "queue.h"
|
2009-09-27 23:08:27 +02:00
|
|
|
#include "i3.h"
|
2009-06-01 16:19:06 +02:00
|
|
|
|
2009-02-25 00:50:30 +01:00
|
|
|
typedef struct Config Config;
|
|
|
|
extern Config config;
|
2009-09-19 19:05:15 +02:00
|
|
|
extern bool config_use_lexer;
|
2009-09-27 18:45:39 +02:00
|
|
|
extern SLIST_HEAD(modes_head, Mode) modes;
|
2009-02-25 00:50:30 +01:00
|
|
|
|
2009-06-29 22:15:37 +02:00
|
|
|
/**
|
|
|
|
* Part of the struct Config. It makes sense to group colors for background,
|
|
|
|
* border and text as every element in i3 has them (window decorations, bar).
|
|
|
|
*
|
|
|
|
*/
|
2009-05-30 22:20:32 +02:00
|
|
|
struct Colortriple {
|
2009-06-01 15:14:45 +02:00
|
|
|
uint32_t border;
|
|
|
|
uint32_t background;
|
|
|
|
uint32_t text;
|
2009-05-30 22:20:32 +02:00
|
|
|
};
|
|
|
|
|
2009-06-29 22:15:37 +02:00
|
|
|
/**
|
|
|
|
* Holds a user-assigned variable for parsing the configuration file. The key
|
|
|
|
* is replaced by value in every following line of the file.
|
|
|
|
*
|
|
|
|
*/
|
2009-06-01 16:19:06 +02:00
|
|
|
struct Variable {
|
|
|
|
char *key;
|
|
|
|
char *value;
|
2009-09-13 21:32:58 +02:00
|
|
|
char *next_match;
|
2009-06-01 16:19:06 +02:00
|
|
|
|
|
|
|
SLIST_ENTRY(Variable) variables;
|
|
|
|
};
|
|
|
|
|
2009-09-27 18:45:39 +02:00
|
|
|
/**
|
|
|
|
* The configuration file can contain multiple sets of bindings. Apart from the
|
|
|
|
* default set (name == "default"), you can specify other sets and change the
|
|
|
|
* currently active set of bindings by using the "mode <name>" command.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct Mode {
|
|
|
|
char *name;
|
|
|
|
struct bindings_head *bindings;
|
|
|
|
|
|
|
|
SLIST_ENTRY(Mode) modes;
|
|
|
|
};
|
|
|
|
|
2009-06-29 22:15:37 +02:00
|
|
|
/**
|
|
|
|
* Holds part of the configuration (the part which is not already in dedicated
|
|
|
|
* structures in include/data.h).
|
|
|
|
*
|
|
|
|
*/
|
2009-02-25 00:50:30 +01:00
|
|
|
struct Config {
|
2009-05-30 22:22:58 +02:00
|
|
|
const char *terminal;
|
|
|
|
const char *font;
|
2009-05-29 16:33:48 +02:00
|
|
|
|
2009-07-28 22:09:53 +02:00
|
|
|
const char *ipc_socket_path;
|
|
|
|
|
2009-09-27 23:08:27 +02:00
|
|
|
int container_mode;
|
|
|
|
int container_stack_limit;
|
|
|
|
int container_stack_limit_value;
|
|
|
|
|
2009-11-08 12:43:01 +01:00
|
|
|
const char *default_border;
|
|
|
|
|
2009-06-24 20:31:00 +02:00
|
|
|
/** The modifier which needs to be pressed in combination with your mouse
|
|
|
|
* buttons to do things with floating windows (move, resize) */
|
|
|
|
uint32_t floating_modifier;
|
|
|
|
|
2009-05-30 22:22:58 +02:00
|
|
|
/* Color codes are stored here */
|
|
|
|
struct config_client {
|
|
|
|
struct Colortriple focused;
|
|
|
|
struct Colortriple focused_inactive;
|
|
|
|
struct Colortriple unfocused;
|
2009-09-06 22:40:11 +02:00
|
|
|
struct Colortriple urgent;
|
2009-05-30 22:22:58 +02:00
|
|
|
} client;
|
|
|
|
struct config_bar {
|
|
|
|
struct Colortriple focused;
|
|
|
|
struct Colortriple unfocused;
|
2009-09-06 22:40:11 +02:00
|
|
|
struct Colortriple urgent;
|
2009-05-30 22:22:58 +02:00
|
|
|
} bar;
|
2009-02-25 00:50:30 +01:00
|
|
|
};
|
|
|
|
|
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-07-23 18:14:24 +02:00
|
|
|
void load_configuration(xcb_connection_t *conn, const char *override_configfile, bool reload);
|
2009-08-07 15:35:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ungrabs all keys, to be called before re-grabbing the keys because of a
|
|
|
|
* mapping_notify event or a configuration file reload
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void ungrab_all_keys(xcb_connection_t *conn);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Grab the bound keys (tell X to send us keypress events for those keycodes)
|
|
|
|
*
|
|
|
|
*/
|
2009-07-23 18:14:24 +02:00
|
|
|
void grab_all_keys(xcb_connection_t *conn);
|
2009-02-25 00:50:30 +01:00
|
|
|
|
2009-09-27 18:45:39 +02:00
|
|
|
/**
|
|
|
|
* Switches the key bindings to the given mode, if the mode exists
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void switch_mode(xcb_connection_t *conn, const char *new_mode);
|
|
|
|
|
2009-02-25 00:50:30 +01:00
|
|
|
#endif
|