]> git.sur5r.net Git - i3/i3/blob - src/config.c
Merge pull request #3319 from Stunkymonkey/format_placholders-case_sensitive
[i3/i3] / src / config.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * config.c: Configuration file (calling the parser (src/config_parser.c) with
8  *           the correct path, switching key bindings mode).
9  *
10  */
11 #include "all.h"
12
13 #include <xkbcommon/xkbcommon.h>
14
15 char *current_configpath = NULL;
16 char *current_config = 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             "$XDG_CONFIG_HOME/i3/config, ~/.i3/config, $XDG_CONFIG_DIRS/i3/config "
53             "and " SYSCONFDIR "/i3/config)");
54     }
55
56     LOG("Parsing configfile %s\n", path);
57     FREE(current_configpath);
58     current_configpath = path;
59
60     /* initialize default bindings if we're just validating the config file */
61     if (!use_nagbar && bindings == NULL) {
62         bindings = scalloc(1, sizeof(struct bindings_head));
63         TAILQ_INIT(bindings);
64     }
65
66     return parse_file(path, use_nagbar);
67 }
68
69 /*
70  * (Re-)loads the configuration file (sets useful defaults before).
71  *
72  */
73 void load_configuration(xcb_connection_t *conn, const char *override_configpath, bool reload) {
74     if (reload) {
75         /* If we are currently in a binding mode, we first revert to the
76          * default since we have no guarantee that the current mode will even
77          * still exist after parsing the config again. See #2228. */
78         switch_mode("default");
79
80         /* First ungrab the keys */
81         ungrab_all_keys(conn);
82
83         struct Mode *mode;
84         while (!SLIST_EMPTY(&modes)) {
85             mode = SLIST_FIRST(&modes);
86             FREE(mode->name);
87
88             /* Clear the old binding list */
89             while (!TAILQ_EMPTY(mode->bindings)) {
90                 Binding *bind = TAILQ_FIRST(mode->bindings);
91                 TAILQ_REMOVE(mode->bindings, bind, bindings);
92                 binding_free(bind);
93             }
94             FREE(mode->bindings);
95
96             SLIST_REMOVE(&modes, mode, Mode, modes);
97             FREE(mode);
98         }
99
100         struct Assignment *assign;
101         while (!TAILQ_EMPTY(&assignments)) {
102             assign = TAILQ_FIRST(&assignments);
103             if (assign->type == A_TO_WORKSPACE || assign->type == A_TO_WORKSPACE_NUMBER)
104                 FREE(assign->dest.workspace);
105             else if (assign->type == A_COMMAND)
106                 FREE(assign->dest.command);
107             else if (assign->type == A_TO_OUTPUT)
108                 FREE(assign->dest.output);
109             match_free(&(assign->match));
110             TAILQ_REMOVE(&assignments, assign, assignments);
111             FREE(assign);
112         }
113
114         /* Clear bar configs */
115         Barconfig *barconfig;
116         while (!TAILQ_EMPTY(&barconfigs)) {
117             barconfig = TAILQ_FIRST(&barconfigs);
118             FREE(barconfig->id);
119             for (int c = 0; c < barconfig->num_outputs; c++)
120                 free(barconfig->outputs[c]);
121
122             while (!TAILQ_EMPTY(&(barconfig->bar_bindings))) {
123                 struct Barbinding *binding = TAILQ_FIRST(&(barconfig->bar_bindings));
124                 FREE(binding->command);
125                 TAILQ_REMOVE(&(barconfig->bar_bindings), binding, bindings);
126                 FREE(binding);
127             }
128
129             while (!TAILQ_EMPTY(&(barconfig->tray_outputs))) {
130                 struct tray_output_t *tray_output = TAILQ_FIRST(&(barconfig->tray_outputs));
131                 FREE(tray_output->output);
132                 TAILQ_REMOVE(&(barconfig->tray_outputs), tray_output, tray_outputs);
133                 FREE(tray_output);
134             }
135
136             FREE(barconfig->outputs);
137             FREE(barconfig->socket_path);
138             FREE(barconfig->status_command);
139             FREE(barconfig->i3bar_command);
140             FREE(barconfig->font);
141             FREE(barconfig->colors.background);
142             FREE(barconfig->colors.statusline);
143             FREE(barconfig->colors.separator);
144             FREE(barconfig->colors.focused_background);
145             FREE(barconfig->colors.focused_statusline);
146             FREE(barconfig->colors.focused_separator);
147             FREE(barconfig->colors.focused_workspace_border);
148             FREE(barconfig->colors.focused_workspace_bg);
149             FREE(barconfig->colors.focused_workspace_text);
150             FREE(barconfig->colors.active_workspace_border);
151             FREE(barconfig->colors.active_workspace_bg);
152             FREE(barconfig->colors.active_workspace_text);
153             FREE(barconfig->colors.inactive_workspace_border);
154             FREE(barconfig->colors.inactive_workspace_bg);
155             FREE(barconfig->colors.inactive_workspace_text);
156             FREE(barconfig->colors.urgent_workspace_border);
157             FREE(barconfig->colors.urgent_workspace_bg);
158             FREE(barconfig->colors.urgent_workspace_text);
159             FREE(barconfig->colors.binding_mode_border);
160             FREE(barconfig->colors.binding_mode_bg);
161             FREE(barconfig->colors.binding_mode_text);
162             TAILQ_REMOVE(&barconfigs, barconfig, configs);
163             FREE(barconfig);
164         }
165
166         Con *con;
167         TAILQ_FOREACH(con, &all_cons, all_cons) {
168             /* Assignments changed, previously ran assignments are invalid. */
169             if (con->window) {
170                 con->window->nr_assignments = 0;
171                 FREE(con->window->ran_assignments);
172             }
173             /* Invalidate pixmap caches in case font or colors changed. */
174             FREE(con->deco_render_params);
175         }
176
177         /* Get rid of the current font */
178         free_font();
179
180         free(config.ipc_socket_path);
181         free(config.restart_state_path);
182         free(config.fake_outputs);
183     }
184
185     SLIST_INIT(&modes);
186
187     struct Mode *default_mode = scalloc(1, sizeof(struct Mode));
188     default_mode->name = sstrdup("default");
189     default_mode->bindings = scalloc(1, sizeof(struct bindings_head));
190     TAILQ_INIT(default_mode->bindings);
191     SLIST_INSERT_HEAD(&modes, default_mode, modes);
192
193     bindings = default_mode->bindings;
194
195     /* Clear the old config or initialize the data structure */
196     memset(&config, 0, sizeof(config));
197
198 /* Initialize default colors */
199 #define INIT_COLOR(x, cborder, cbackground, ctext, cindicator) \
200     do {                                                       \
201         x.border = draw_util_hex_to_color(cborder);            \
202         x.background = draw_util_hex_to_color(cbackground);    \
203         x.text = draw_util_hex_to_color(ctext);                \
204         x.indicator = draw_util_hex_to_color(cindicator);      \
205         x.child_border = draw_util_hex_to_color(cbackground);  \
206     } while (0)
207
208     config.client.background = draw_util_hex_to_color("#000000");
209     INIT_COLOR(config.client.focused, "#4c7899", "#285577", "#ffffff", "#2e9ef4");
210     INIT_COLOR(config.client.focused_inactive, "#333333", "#5f676a", "#ffffff", "#484e50");
211     INIT_COLOR(config.client.unfocused, "#333333", "#222222", "#888888", "#292d2e");
212     INIT_COLOR(config.client.urgent, "#2f343a", "#900000", "#ffffff", "#900000");
213
214     /* border and indicator color are ignored for placeholder contents */
215     INIT_COLOR(config.client.placeholder, "#000000", "#0c0c0c", "#ffffff", "#000000");
216
217     /* the last argument (indicator color) is ignored for bar colors */
218     INIT_COLOR(config.bar.focused, "#4c7899", "#285577", "#ffffff", "#000000");
219     INIT_COLOR(config.bar.unfocused, "#333333", "#222222", "#888888", "#000000");
220     INIT_COLOR(config.bar.urgent, "#2f343a", "#900000", "#ffffff", "#000000");
221
222     config.show_marks = true;
223
224     config.default_border = BS_NORMAL;
225     config.default_floating_border = BS_NORMAL;
226     config.default_border_width = logical_px(2);
227     config.default_floating_border_width = logical_px(2);
228     /* Set default_orientation to NO_ORIENTATION for auto orientation. */
229     config.default_orientation = NO_ORIENTATION;
230
231     /* Set default urgency reset delay to 500ms */
232     if (config.workspace_urgency_timer == 0)
233         config.workspace_urgency_timer = 0.5;
234
235     config.focus_wrapping = FOCUS_WRAPPING_ON;
236
237     parse_configuration(override_configpath, true);
238
239     if (reload) {
240         translate_keysyms();
241         grab_all_keys(conn);
242         regrab_all_buttons(conn);
243     }
244
245     if (config.font.type == FONT_TYPE_NONE) {
246         ELOG("You did not specify required configuration option \"font\"\n");
247         config.font = load_font("fixed", true);
248         set_font(&config.font);
249     }
250
251     /* Redraw the currently visible decorations on reload, so that
252      * the possibly new drawing parameters changed. */
253     if (reload) {
254         x_deco_recurse(croot);
255         xcb_flush(conn);
256     }
257 }