]> git.sur5r.net Git - i3/i3/blob - src/config.c
d8db85e63c0c630aa433f780a3ade29045bfc9ee
[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.focused_workspace_border);
122             FREE(barconfig->colors.focused_workspace_bg);
123             FREE(barconfig->colors.focused_workspace_text);
124             FREE(barconfig->colors.active_workspace_border);
125             FREE(barconfig->colors.active_workspace_bg);
126             FREE(barconfig->colors.active_workspace_text);
127             FREE(barconfig->colors.inactive_workspace_border);
128             FREE(barconfig->colors.inactive_workspace_bg);
129             FREE(barconfig->colors.inactive_workspace_text);
130             FREE(barconfig->colors.urgent_workspace_border);
131             FREE(barconfig->colors.urgent_workspace_bg);
132             FREE(barconfig->colors.urgent_workspace_text);
133             FREE(barconfig->colors.binding_mode_border);
134             FREE(barconfig->colors.binding_mode_bg);
135             FREE(barconfig->colors.binding_mode_text);
136             TAILQ_REMOVE(&barconfigs, barconfig, configs);
137             FREE(barconfig);
138         }
139
140 /* Clear workspace names */
141 #if 0
142         Workspace *ws;
143         TAILQ_FOREACH(ws, workspaces, workspaces)
144             workspace_set_name(ws, NULL);
145 #endif
146
147         /* Invalidate pixmap caches in case font or colors changed */
148         Con *con;
149         TAILQ_FOREACH(con, &all_cons, all_cons)
150         FREE(con->deco_render_params);
151
152         /* Get rid of the current font */
153         free_font();
154     }
155
156     SLIST_INIT(&modes);
157
158     struct Mode *default_mode = scalloc(1, sizeof(struct Mode));
159     default_mode->name = sstrdup("default");
160     default_mode->bindings = scalloc(1, sizeof(struct bindings_head));
161     TAILQ_INIT(default_mode->bindings);
162     SLIST_INSERT_HEAD(&modes, default_mode, modes);
163
164     bindings = default_mode->bindings;
165
166 #define REQUIRED_OPTION(name) \
167     if (config.name == NULL)  \
168         die("You did not specify required configuration option " #name "\n");
169
170     /* Clear the old config or initialize the data structure */
171     memset(&config, 0, sizeof(config));
172
173 /* Initialize default colors */
174 #define INIT_COLOR(x, cborder, cbackground, ctext, cindicator) \
175     do {                                                       \
176         x.border = get_colorpixel(cborder);                    \
177         x.background = get_colorpixel(cbackground);            \
178         x.text = get_colorpixel(ctext);                        \
179         x.indicator = get_colorpixel(cindicator);              \
180     } while (0)
181
182     config.client.background = get_colorpixel("#000000");
183     INIT_COLOR(config.client.focused, "#4c7899", "#285577", "#ffffff", "#2e9ef4");
184     INIT_COLOR(config.client.focused_inactive, "#333333", "#5f676a", "#ffffff", "#484e50");
185     INIT_COLOR(config.client.unfocused, "#333333", "#222222", "#888888", "#292d2e");
186     INIT_COLOR(config.client.urgent, "#2f343a", "#900000", "#ffffff", "#900000");
187
188     /* border and indicator color are ignored for placeholder contents */
189     INIT_COLOR(config.client.placeholder, "#000000", "#0c0c0c", "#ffffff", "#000000");
190
191     /* the last argument (indicator color) is ignored for bar colors */
192     INIT_COLOR(config.bar.focused, "#4c7899", "#285577", "#ffffff", "#000000");
193     INIT_COLOR(config.bar.unfocused, "#333333", "#222222", "#888888", "#000000");
194     INIT_COLOR(config.bar.urgent, "#2f343a", "#900000", "#ffffff", "#000000");
195
196     config.show_marks = true;
197
198     config.default_border = BS_NORMAL;
199     config.default_floating_border = BS_NORMAL;
200     config.default_border_width = logical_px(2);
201     config.default_floating_border_width = logical_px(2);
202     /* Set default_orientation to NO_ORIENTATION for auto orientation. */
203     config.default_orientation = NO_ORIENTATION;
204
205     /* Set default urgency reset delay to 500ms */
206     if (config.workspace_urgency_timer == 0)
207         config.workspace_urgency_timer = 0.5;
208
209     parse_configuration(override_configpath, true);
210
211     if (reload) {
212         translate_keysyms();
213         grab_all_keys(conn);
214     }
215
216     if (config.font.type == FONT_TYPE_NONE) {
217         ELOG("You did not specify required configuration option \"font\"\n");
218         config.font = load_font("fixed", true);
219         set_font(&config.font);
220     }
221
222     /* Redraw the currently visible decorations on reload, so that
223      * the possibly new drawing parameters changed. */
224     if (reload) {
225         x_deco_recurse(croot);
226         xcb_flush(conn);
227     }
228
229 #if 0
230     /* Set an empty name for every workspace which got no name */
231     Workspace *ws;
232     TAILQ_FOREACH(ws, workspaces, workspaces) {
233             if (ws->name != NULL) {
234                     /* If the font was not specified when the workspace name
235                      * was loaded, we need to predict the text width now */
236                     if (ws->text_width == 0)
237                             ws->text_width = predict_text_width(global_conn,
238                                             config.font, ws->name, ws->name_len);
239                     continue;
240             }
241
242             workspace_set_name(ws, NULL);
243     }
244 #endif
245 }