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