]> git.sur5r.net Git - i3/i3/blob - src/config.c
Implement variable border widths for pixel/normal
[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-2012 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * config.c: Configuration file (calling the parser (src/cfgparse.y) with the
10  *           correct path, switching key bindings mode).
11  *
12  */
13 #include "all.h"
14
15 /* We need Xlib for XStringToKeysym */
16 #include <X11/Xlib.h>
17
18 char *current_configpath = NULL;
19 Config config;
20 struct modes_head modes;
21 struct barconfig_head barconfigs = TAILQ_HEAD_INITIALIZER(barconfigs);
22
23 /**
24  * Ungrabs all keys, to be called before re-grabbing the keys because of a
25  * mapping_notify event or a configuration file reload
26  *
27  */
28 void ungrab_all_keys(xcb_connection_t *conn) {
29     DLOG("Ungrabbing all keys\n");
30     xcb_ungrab_key(conn, XCB_GRAB_ANY, root, XCB_BUTTON_MASK_ANY);
31 }
32
33 static void grab_keycode_for_binding(xcb_connection_t *conn, Binding *bind, uint32_t keycode) {
34     DLOG("Grabbing %d\n", keycode);
35     /* Grab the key in all combinations */
36     #define GRAB_KEY(modifier) \
37         do { \
38             xcb_grab_key(conn, 0, root, modifier, keycode, \
39                          XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC); \
40         } while (0)
41     int mods = bind->mods;
42     if ((bind->mods & BIND_MODE_SWITCH) != 0) {
43         mods &= ~BIND_MODE_SWITCH;
44         if (mods == 0)
45             mods = XCB_MOD_MASK_ANY;
46     }
47     GRAB_KEY(mods);
48     GRAB_KEY(mods | xcb_numlock_mask);
49     GRAB_KEY(mods | xcb_numlock_mask | XCB_MOD_MASK_LOCK);
50 }
51
52 /*
53  * Returns a pointer to the Binding with the specified modifiers and keycode
54  * or NULL if no such binding exists.
55  *
56  */
57 Binding *get_binding(uint16_t modifiers, bool key_release, xcb_keycode_t keycode) {
58     Binding *bind;
59
60     if (!key_release) {
61         /* On a KeyPress event, we first reset all
62          * B_UPON_KEYRELEASE_IGNORE_MODS bindings back to B_UPON_KEYRELEASE */
63         TAILQ_FOREACH(bind, bindings, bindings) {
64             if (bind->release == B_UPON_KEYRELEASE_IGNORE_MODS)
65                 bind->release = B_UPON_KEYRELEASE;
66         }
67
68         /* Then we transition the KeyRelease bindings into a state where the
69          * modifiers no longer matter for the KeyRelease event so that users
70          * can release the modifier key before releasing the actual key. */
71         TAILQ_FOREACH(bind, bindings, bindings) {
72             if (bind->release == B_UPON_KEYRELEASE && !key_release)
73                 bind->release = B_UPON_KEYRELEASE_IGNORE_MODS;
74         }
75     }
76
77     TAILQ_FOREACH(bind, bindings, bindings) {
78         /* First compare the modifiers (unless this is a
79          * B_UPON_KEYRELEASE_IGNORE_MODS binding and this is a KeyRelease
80          * event) */
81         if (bind->mods != modifiers &&
82             (bind->release != B_UPON_KEYRELEASE_IGNORE_MODS ||
83              !key_release))
84             continue;
85
86         /* Check if the binding is for a KeyPress or a KeyRelease event */
87         if ((bind->release == B_UPON_KEYPRESS && key_release) ||
88             (bind->release >= B_UPON_KEYRELEASE && !key_release))
89             continue;
90
91         /* If a symbol was specified by the user, we need to look in
92          * the array of translated keycodes for the event’s keycode */
93         if (bind->symbol != NULL) {
94             if (memmem(bind->translated_to,
95                        bind->number_keycodes * sizeof(xcb_keycode_t),
96                        &keycode, sizeof(xcb_keycode_t)) != NULL)
97                 break;
98         } else {
99             /* This case is easier: The user specified a keycode */
100             if (bind->keycode == keycode)
101                 break;
102         }
103     }
104
105     return (bind == TAILQ_END(bindings) ? NULL : bind);
106 }
107
108 /*
109  * Translates keysymbols to keycodes for all bindings which use keysyms.
110  *
111  */
112 void translate_keysyms(void) {
113     Binding *bind;
114     xcb_keysym_t keysym;
115     int col;
116     xcb_keycode_t i,
117                   min_keycode = xcb_get_setup(conn)->min_keycode,
118                   max_keycode = xcb_get_setup(conn)->max_keycode;
119
120     TAILQ_FOREACH(bind, bindings, bindings) {
121         if (bind->keycode > 0)
122             continue;
123
124         /* We need to translate the symbol to a keycode */
125         keysym = XStringToKeysym(bind->symbol);
126         if (keysym == NoSymbol) {
127             ELOG("Could not translate string to key symbol: \"%s\"\n",
128                  bind->symbol);
129             continue;
130         }
131
132         /* Base column we use for looking up key symbols. We always consider
133          * the base column and the corresponding shift column, so without
134          * mode_switch, we look in 0 and 1, with mode_switch we look in 2 and
135          * 3. */
136         col = (bind->mods & BIND_MODE_SWITCH ? 2 : 0);
137
138         FREE(bind->translated_to);
139         bind->number_keycodes = 0;
140
141         for (i = min_keycode; i && i <= max_keycode; i++) {
142             if ((xcb_key_symbols_get_keysym(keysyms, i, col) != keysym) &&
143                 (xcb_key_symbols_get_keysym(keysyms, i, col+1) != keysym))
144                 continue;
145             bind->number_keycodes++;
146             bind->translated_to = srealloc(bind->translated_to,
147                                            (sizeof(xcb_keycode_t) *
148                                             bind->number_keycodes));
149             bind->translated_to[bind->number_keycodes-1] = i;
150         }
151
152         DLOG("Translated symbol \"%s\" to %d keycode\n", bind->symbol,
153              bind->number_keycodes);
154     }
155 }
156
157 /*
158  * Grab the bound keys (tell X to send us keypress events for those keycodes)
159  *
160  */
161 void grab_all_keys(xcb_connection_t *conn, bool bind_mode_switch) {
162     Binding *bind;
163     TAILQ_FOREACH(bind, bindings, bindings) {
164         if ((bind_mode_switch && (bind->mods & BIND_MODE_SWITCH) == 0) ||
165             (!bind_mode_switch && (bind->mods & BIND_MODE_SWITCH) != 0))
166             continue;
167
168         /* The easy case: the user specified a keycode directly. */
169         if (bind->keycode > 0) {
170             grab_keycode_for_binding(conn, bind, bind->keycode);
171             continue;
172         }
173
174         xcb_keycode_t *walk = bind->translated_to;
175         for (int i = 0; i < bind->number_keycodes; i++)
176             grab_keycode_for_binding(conn, bind, *walk++);
177     }
178 }
179
180 /*
181  * Switches the key bindings to the given mode, if the mode exists
182  *
183  */
184 void switch_mode(const char *new_mode) {
185     struct Mode *mode;
186
187     LOG("Switching to mode %s\n", new_mode);
188
189     SLIST_FOREACH(mode, &modes, modes) {
190         if (strcasecmp(mode->name, new_mode) != 0)
191             continue;
192
193         ungrab_all_keys(conn);
194         bindings = mode->bindings;
195         translate_keysyms();
196         grab_all_keys(conn, false);
197
198         char *event_msg;
199         sasprintf(&event_msg, "{\"change\":\"%s\"}", mode->name);
200
201         ipc_send_event("mode", I3_IPC_EVENT_MODE, event_msg);
202         FREE(event_msg);
203
204         return;
205     }
206
207     ELOG("ERROR: Mode not found\n");
208 }
209
210 /*
211  * Get the path of the first configuration file found. If override_configpath
212  * is specified, that path is returned and saved for further calls. Otherwise,
213  * checks the home directory first, then the system directory first, always
214  * taking into account the XDG Base Directory Specification ($XDG_CONFIG_HOME,
215  * $XDG_CONFIG_DIRS)
216  *
217  */
218 static char *get_config_path(const char *override_configpath) {
219     char *xdg_config_home, *xdg_config_dirs, *config_path;
220
221     static const char *saved_configpath = NULL;
222
223     if (override_configpath != NULL) {
224         saved_configpath = override_configpath;
225         return sstrdup(saved_configpath);
226     }
227
228     if (saved_configpath != NULL)
229         return sstrdup(saved_configpath);
230
231     /* 1: check the traditional path under the home directory */
232     config_path = resolve_tilde("~/.i3/config");
233     if (path_exists(config_path))
234         return config_path;
235     free(config_path);
236
237     /* 2: check for $XDG_CONFIG_HOME/i3/config */
238     if ((xdg_config_home = getenv("XDG_CONFIG_HOME")) == NULL)
239         xdg_config_home = "~/.config";
240
241     xdg_config_home = resolve_tilde(xdg_config_home);
242     sasprintf(&config_path, "%s/i3/config", xdg_config_home);
243     free(xdg_config_home);
244
245     if (path_exists(config_path))
246         return config_path;
247     free(config_path);
248
249     /* 3: check the traditional path under /etc */
250     config_path = SYSCONFDIR "/i3/config";
251     if (path_exists(config_path))
252         return sstrdup(config_path);
253
254     /* 4: check for $XDG_CONFIG_DIRS/i3/config */
255     if ((xdg_config_dirs = getenv("XDG_CONFIG_DIRS")) == NULL)
256         xdg_config_dirs = "/etc/xdg";
257
258     char *buf = sstrdup(xdg_config_dirs);
259     char *tok = strtok(buf, ":");
260     while (tok != NULL) {
261         tok = resolve_tilde(tok);
262         sasprintf(&config_path, "%s/i3/config", tok);
263         free(tok);
264         if (path_exists(config_path)) {
265             free(buf);
266             return config_path;
267         }
268         free(config_path);
269         tok = strtok(NULL, ":");
270     }
271     free(buf);
272
273     die("Unable to find the configuration file (looked at "
274             "~/.i3/config, $XDG_CONFIG_HOME/i3/config, "
275             SYSCONFDIR "/i3/config and $XDG_CONFIG_DIRS/i3/config)");
276 }
277
278 /*
279  * Finds the configuration file to use (either the one specified by
280  * override_configpath), the user’s one or the system default) and calls
281  * parse_file().
282  *
283  */
284 static void parse_configuration(const char *override_configpath) {
285     char *path = get_config_path(override_configpath);
286     LOG("Parsing configfile %s\n", path);
287     FREE(current_configpath);
288     current_configpath = path;
289     parse_file(path);
290 }
291
292 /*
293  * (Re-)loads the configuration file (sets useful defaults before).
294  *
295  */
296 void load_configuration(xcb_connection_t *conn, const char *override_configpath, bool reload) {
297     if (reload) {
298         /* First ungrab the keys */
299         ungrab_all_keys(conn);
300
301         struct Mode *mode;
302         Binding *bind;
303         while (!SLIST_EMPTY(&modes)) {
304             mode = SLIST_FIRST(&modes);
305             FREE(mode->name);
306
307             /* Clear the old binding list */
308             bindings = mode->bindings;
309             while (!TAILQ_EMPTY(bindings)) {
310                 bind = TAILQ_FIRST(bindings);
311                 TAILQ_REMOVE(bindings, bind, bindings);
312                 FREE(bind->translated_to);
313                 FREE(bind->command);
314                 FREE(bind);
315             }
316             FREE(bindings);
317             SLIST_REMOVE(&modes, mode, Mode, modes);
318         }
319
320         struct Assignment *assign;
321         while (!TAILQ_EMPTY(&assignments)) {
322             assign = TAILQ_FIRST(&assignments);
323             if (assign->type == A_TO_WORKSPACE)
324                 FREE(assign->dest.workspace);
325             else if (assign->type == A_TO_OUTPUT)
326                 FREE(assign->dest.output);
327             else if (assign->type == A_COMMAND)
328                 FREE(assign->dest.command);
329             match_free(&(assign->match));
330             TAILQ_REMOVE(&assignments, assign, assignments);
331             FREE(assign);
332         }
333
334         /* Clear bar configs */
335         Barconfig *barconfig;
336         while (!TAILQ_EMPTY(&barconfigs)) {
337             barconfig = TAILQ_FIRST(&barconfigs);
338             FREE(barconfig->id);
339             for (int c = 0; c < barconfig->num_outputs; c++)
340                 free(barconfig->outputs[c]);
341             FREE(barconfig->outputs);
342             FREE(barconfig->tray_output);
343             FREE(barconfig->socket_path);
344             FREE(barconfig->status_command);
345             FREE(barconfig->i3bar_command);
346             FREE(barconfig->font);
347             FREE(barconfig->colors.background);
348             FREE(barconfig->colors.statusline);
349             FREE(barconfig->colors.focused_workspace_border);
350             FREE(barconfig->colors.focused_workspace_bg);
351             FREE(barconfig->colors.focused_workspace_text);
352             FREE(barconfig->colors.active_workspace_border);
353             FREE(barconfig->colors.active_workspace_bg);
354             FREE(barconfig->colors.active_workspace_text);
355             FREE(barconfig->colors.inactive_workspace_border);
356             FREE(barconfig->colors.inactive_workspace_bg);
357             FREE(barconfig->colors.inactive_workspace_text);
358             FREE(barconfig->colors.urgent_workspace_border);
359             FREE(barconfig->colors.urgent_workspace_bg);
360             FREE(barconfig->colors.urgent_workspace_text);
361             TAILQ_REMOVE(&barconfigs, barconfig, configs);
362             FREE(barconfig);
363         }
364
365         /* Clear workspace names */
366 #if 0
367         Workspace *ws;
368         TAILQ_FOREACH(ws, workspaces, workspaces)
369             workspace_set_name(ws, NULL);
370 #endif
371
372         /* Invalidate pixmap caches in case font or colors changed */
373         Con *con;
374         TAILQ_FOREACH(con, &all_cons, all_cons)
375             FREE(con->deco_render_params);
376
377         /* Get rid of the current font */
378         free_font();
379     }
380
381     SLIST_INIT(&modes);
382
383     struct Mode *default_mode = scalloc(sizeof(struct Mode));
384     default_mode->name = sstrdup("default");
385     default_mode->bindings = scalloc(sizeof(struct bindings_head));
386     TAILQ_INIT(default_mode->bindings);
387     SLIST_INSERT_HEAD(&modes, default_mode, modes);
388
389     bindings = default_mode->bindings;
390
391 #define REQUIRED_OPTION(name) \
392     if (config.name == NULL) \
393         die("You did not specify required configuration option " #name "\n");
394
395     /* Clear the old config or initialize the data structure */
396     memset(&config, 0, sizeof(config));
397
398     /* Initialize default colors */
399 #define INIT_COLOR(x, cborder, cbackground, ctext, cindicator) \
400     do { \
401         x.border = get_colorpixel(cborder); \
402         x.background = get_colorpixel(cbackground); \
403         x.text = get_colorpixel(ctext); \
404         x.indicator = get_colorpixel(cindicator); \
405     } while (0)
406
407     config.client.background = get_colorpixel("#000000");
408     INIT_COLOR(config.client.focused, "#4c7899", "#285577", "#ffffff", "#2e9ef4");
409     INIT_COLOR(config.client.focused_inactive, "#333333", "#5f676a", "#ffffff", "#484e50");
410     INIT_COLOR(config.client.unfocused, "#333333", "#222222", "#888888", "#292d2e");
411     INIT_COLOR(config.client.urgent, "#2f343a", "#900000", "#ffffff", "#900000");
412
413     /* the last argument (indicator color) is ignored for bar colors */
414     INIT_COLOR(config.bar.focused, "#4c7899", "#285577", "#ffffff", "#000000");
415     INIT_COLOR(config.bar.unfocused, "#333333", "#222222", "#888888", "#000000");
416     INIT_COLOR(config.bar.urgent, "#2f343a", "#900000", "#ffffff", "#000000");
417
418     config.default_border = BS_NORMAL;
419     config.default_floating_border = BS_NORMAL;
420     config.default_border_width = 2;
421     /* Set default_orientation to NO_ORIENTATION for auto orientation. */
422     config.default_orientation = NO_ORIENTATION;
423
424     /* Set default urgency reset delay to 500ms */
425     if (config.workspace_urgency_timer == 0)
426         config.workspace_urgency_timer = 0.5;
427
428     parse_configuration(override_configpath);
429
430     if (reload) {
431         translate_keysyms();
432         grab_all_keys(conn, false);
433     }
434
435     if (config.font.type == FONT_TYPE_NONE) {
436         ELOG("You did not specify required configuration option \"font\"\n");
437         config.font = load_font("fixed", true);
438         set_font(&config.font);
439     }
440
441     /* Redraw the currently visible decorations on reload, so that
442      * the possibly new drawing parameters changed. */
443     if (reload) {
444         x_deco_recurse(croot);
445         xcb_flush(conn);
446     }
447
448 #if 0
449     /* Set an empty name for every workspace which got no name */
450     Workspace *ws;
451     TAILQ_FOREACH(ws, workspaces, workspaces) {
452             if (ws->name != NULL) {
453                     /* If the font was not specified when the workspace name
454                      * was loaded, we need to predict the text width now */
455                     if (ws->text_width == 0)
456                             ws->text_width = predict_text_width(global_conn,
457                                             config.font, ws->name, ws->name_len);
458                     continue;
459             }
460
461             workspace_set_name(ws, NULL);
462     }
463 #endif
464 }