]> git.sur5r.net Git - i3/i3/blob - src/config.c
Optionally change i3bar color on focused output, implements #2020
[i3/i3] / src / config.c
1 #undef I3__FILE__
2 #define I3__FILE__ "config.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * config.c: Configuration file (calling the parser (src/config_parser.c) with
10  *           the correct path, switching key bindings mode).
11  *
12  */
13 #include "all.h"
14 #include <xkbcommon/xkbcommon.h>
15
16 char *current_configpath = NULL;
17 Config config;
18 struct modes_head modes;
19 struct barconfig_head barconfigs = TAILQ_HEAD_INITIALIZER(barconfigs);
20
21 /**
22  * Ungrabs all keys, to be called before re-grabbing the keys because of a
23  * mapping_notify event or a configuration file reload
24  *
25  */
26 void ungrab_all_keys(xcb_connection_t *conn) {
27     DLOG("Ungrabbing all keys\n");
28     xcb_ungrab_key(conn, XCB_GRAB_ANY, root, XCB_BUTTON_MASK_ANY);
29 }
30
31 /*
32  * Sends the current bar configuration as an event to all barconfig_update listeners.
33  *
34  */
35 void update_barconfig() {
36     Barconfig *current;
37     TAILQ_FOREACH(current, &barconfigs, configs) {
38         ipc_send_barconfig_update_event(current);
39     }
40 }
41
42 /*
43  * Finds the configuration file to use (either the one specified by
44  * override_configpath), the user’s one or the system default) and calls
45  * parse_file().
46  *
47  */
48 bool parse_configuration(const char *override_configpath, bool use_nagbar) {
49     char *path = get_config_path(override_configpath, true);
50     if (path == NULL) {
51         die("Unable to find the configuration file (looked at "
52             "~/.i3/config, $XDG_CONFIG_HOME/i3/config, " SYSCONFDIR "/i3/config and $XDG_CONFIG_DIRS/i3/config)");
53     }
54
55     LOG("Parsing configfile %s\n", path);
56     FREE(current_configpath);
57     current_configpath = path;
58
59     /* initialize default bindings if we're just validating the config file */
60     if (!use_nagbar && bindings == NULL) {
61         bindings = scalloc(1, sizeof(struct bindings_head));
62         TAILQ_INIT(bindings);
63     }
64
65     return parse_file(path, use_nagbar);
66 }
67
68 /*
69  * (Re-)loads the configuration file (sets useful defaults before).
70  *
71  */
72 void load_configuration(xcb_connection_t *conn, const char *override_configpath, bool reload) {
73     if (reload) {
74         /* First ungrab the keys */
75         ungrab_all_keys(conn);
76
77         struct Mode *mode;
78         Binding *bind;
79         while (!SLIST_EMPTY(&modes)) {
80             mode = SLIST_FIRST(&modes);
81             FREE(mode->name);
82
83             /* Clear the old binding list */
84             bindings = mode->bindings;
85             while (!TAILQ_EMPTY(bindings)) {
86                 bind = TAILQ_FIRST(bindings);
87                 TAILQ_REMOVE(bindings, bind, bindings);
88                 binding_free(bind);
89             }
90             FREE(bindings);
91             SLIST_REMOVE(&modes, mode, Mode, modes);
92         }
93
94         struct Assignment *assign;
95         while (!TAILQ_EMPTY(&assignments)) {
96             assign = TAILQ_FIRST(&assignments);
97             if (assign->type == A_TO_WORKSPACE)
98                 FREE(assign->dest.workspace);
99             else if (assign->type == A_COMMAND)
100                 FREE(assign->dest.command);
101             match_free(&(assign->match));
102             TAILQ_REMOVE(&assignments, assign, assignments);
103             FREE(assign);
104         }
105
106         /* Clear bar configs */
107         Barconfig *barconfig;
108         while (!TAILQ_EMPTY(&barconfigs)) {
109             barconfig = TAILQ_FIRST(&barconfigs);
110             FREE(barconfig->id);
111             for (int c = 0; c < barconfig->num_outputs; c++)
112                 free(barconfig->outputs[c]);
113             FREE(barconfig->outputs);
114             FREE(barconfig->tray_output);
115             FREE(barconfig->socket_path);
116             FREE(barconfig->status_command);
117             FREE(barconfig->i3bar_command);
118             FREE(barconfig->font);
119             FREE(barconfig->colors.background);
120             FREE(barconfig->colors.statusline);
121             FREE(barconfig->colors.separator);
122             FREE(barconfig->colors.focused_background);
123             FREE(barconfig->colors.focused_statusline);
124             FREE(barconfig->colors.focused_separator);
125             FREE(barconfig->colors.focused_workspace_border);
126             FREE(barconfig->colors.focused_workspace_bg);
127             FREE(barconfig->colors.focused_workspace_text);
128             FREE(barconfig->colors.active_workspace_border);
129             FREE(barconfig->colors.active_workspace_bg);
130             FREE(barconfig->colors.active_workspace_text);
131             FREE(barconfig->colors.inactive_workspace_border);
132             FREE(barconfig->colors.inactive_workspace_bg);
133             FREE(barconfig->colors.inactive_workspace_text);
134             FREE(barconfig->colors.urgent_workspace_border);
135             FREE(barconfig->colors.urgent_workspace_bg);
136             FREE(barconfig->colors.urgent_workspace_text);
137             FREE(barconfig->colors.binding_mode_border);
138             FREE(barconfig->colors.binding_mode_bg);
139             FREE(barconfig->colors.binding_mode_text);
140             TAILQ_REMOVE(&barconfigs, barconfig, configs);
141             FREE(barconfig);
142         }
143
144 /* Clear workspace names */
145 #if 0
146         Workspace *ws;
147         TAILQ_FOREACH(ws, workspaces, workspaces)
148             workspace_set_name(ws, NULL);
149 #endif
150
151         /* Invalidate pixmap caches in case font or colors changed */
152         Con *con;
153         TAILQ_FOREACH(con, &all_cons, all_cons)
154         FREE(con->deco_render_params);
155
156         /* Get rid of the current font */
157         free_font();
158     }
159
160     SLIST_INIT(&modes);
161
162     struct Mode *default_mode = scalloc(1, sizeof(struct Mode));
163     default_mode->name = sstrdup("default");
164     default_mode->bindings = scalloc(1, sizeof(struct bindings_head));
165     TAILQ_INIT(default_mode->bindings);
166     SLIST_INSERT_HEAD(&modes, default_mode, modes);
167
168     bindings = default_mode->bindings;
169
170 #define REQUIRED_OPTION(name) \
171     if (config.name == NULL)  \
172         die("You did not specify required configuration option " #name "\n");
173
174     /* Clear the old config or initialize the data structure */
175     memset(&config, 0, sizeof(config));
176
177 /* Initialize default colors */
178 #define INIT_COLOR(x, cborder, cbackground, ctext, cindicator) \
179     do {                                                       \
180         x.border = get_colorpixel(cborder);                    \
181         x.background = get_colorpixel(cbackground);            \
182         x.text = get_colorpixel(ctext);                        \
183         x.indicator = get_colorpixel(cindicator);              \
184     } while (0)
185
186     config.client.background = get_colorpixel("#000000");
187     INIT_COLOR(config.client.focused, "#4c7899", "#285577", "#ffffff", "#2e9ef4");
188     INIT_COLOR(config.client.focused_inactive, "#333333", "#5f676a", "#ffffff", "#484e50");
189     INIT_COLOR(config.client.unfocused, "#333333", "#222222", "#888888", "#292d2e");
190     INIT_COLOR(config.client.urgent, "#2f343a", "#900000", "#ffffff", "#900000");
191
192     /* border and indicator color are ignored for placeholder contents */
193     INIT_COLOR(config.client.placeholder, "#000000", "#0c0c0c", "#ffffff", "#000000");
194
195     /* the last argument (indicator color) is ignored for bar colors */
196     INIT_COLOR(config.bar.focused, "#4c7899", "#285577", "#ffffff", "#000000");
197     INIT_COLOR(config.bar.unfocused, "#333333", "#222222", "#888888", "#000000");
198     INIT_COLOR(config.bar.urgent, "#2f343a", "#900000", "#ffffff", "#000000");
199
200     config.show_marks = true;
201
202     config.default_border = BS_NORMAL;
203     config.default_floating_border = BS_NORMAL;
204     config.default_border_width = logical_px(2);
205     config.default_floating_border_width = logical_px(2);
206     /* Set default_orientation to NO_ORIENTATION for auto orientation. */
207     config.default_orientation = NO_ORIENTATION;
208
209     /* Set default urgency reset delay to 500ms */
210     if (config.workspace_urgency_timer == 0)
211         config.workspace_urgency_timer = 0.5;
212
213     parse_configuration(override_configpath, true);
214
215     if (reload) {
216         translate_keysyms();
217         grab_all_keys(conn);
218     }
219
220     if (config.font.type == FONT_TYPE_NONE) {
221         ELOG("You did not specify required configuration option \"font\"\n");
222         config.font = load_font("fixed", true);
223         set_font(&config.font);
224     }
225
226     /* Redraw the currently visible decorations on reload, so that
227      * the possibly new drawing parameters changed. */
228     if (reload) {
229         x_deco_recurse(croot);
230         xcb_flush(conn);
231     }
232
233 #if 0
234     /* Set an empty name for every workspace which got no name */
235     Workspace *ws;
236     TAILQ_FOREACH(ws, workspaces, workspaces) {
237             if (ws->name != NULL) {
238                     /* If the font was not specified when the workspace name
239                      * was loaded, we need to predict the text width now */
240                     if (ws->text_width == 0)
241                             ws->text_width = predict_text_width(global_conn,
242                                             config.font, ws->name, ws->name_len);
243                     continue;
244             }
245
246             workspace_set_name(ws, NULL);
247     }
248 #endif
249 }