]> git.sur5r.net Git - i3/i3/blob - include/configuration.h
Merge branch 'next' into master
[i3/i3] / include / configuration.h
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  * include/configuration.h: Contains all structs/variables for the configurable
8  * part of i3 as well as functions handling the configuration file (calling
9  * the parser (src/config_parse.c) with the correct path, switching key
10  * bindings mode).
11  *
12  */
13 #pragma once
14
15 #include "libi3.h"
16
17 #include <stdbool.h>
18 #include "queue.h"
19 #include "i3.h"
20
21 typedef struct Config Config;
22 typedef struct Barconfig Barconfig;
23 extern char *current_configpath;
24 extern char *current_config;
25 extern Config config;
26 extern SLIST_HEAD(modes_head, Mode) modes;
27 extern TAILQ_HEAD(barconfig_head, Barconfig) barconfigs;
28
29 /**
30  * Used during the config file lexing/parsing to keep the state of the lexer
31  * in order to provide useful error messages in yyerror().
32  *
33  */
34 struct context {
35     bool has_errors;
36     bool has_warnings;
37
38     int line_number;
39     char *line_copy;
40     const char *filename;
41
42     char *compact_error;
43
44     /* These are the same as in YYLTYPE */
45     int first_column;
46     int last_column;
47 };
48
49 /**
50  * Part of the struct Config. It makes sense to group colors for background,
51  * border and text as every element in i3 has them (window decorations, bar).
52  *
53  */
54 struct Colortriple {
55     color_t border;
56     color_t background;
57     color_t text;
58     color_t indicator;
59     color_t child_border;
60 };
61
62 /**
63  * Holds a user-assigned variable for parsing the configuration file. The key
64  * is replaced by value in every following line of the file.
65  *
66  */
67 struct Variable {
68     char *key;
69     char *value;
70     char *next_match;
71
72     SLIST_ENTRY(Variable)
73     variables;
74 };
75
76 /**
77  * The configuration file can contain multiple sets of bindings. Apart from the
78  * default set (name == "default"), you can specify other sets and change the
79  * currently active set of bindings by using the "mode <name>" command.
80  *
81  */
82 struct Mode {
83     char *name;
84     bool pango_markup;
85     struct bindings_head *bindings;
86
87     SLIST_ENTRY(Mode)
88     modes;
89 };
90
91 /**
92  * Holds part of the configuration (the part which is not already in dedicated
93  * structures in include/data.h).
94  *
95  */
96 struct Config {
97     const char *terminal;
98     i3Font font;
99
100     char *ipc_socket_path;
101     char *restart_state_path;
102
103     layout_t default_layout;
104     int container_stack_limit;
105     int container_stack_limit_value;
106     int default_border_width;
107     int default_floating_border_width;
108
109     /** Default orientation for new containers */
110     int default_orientation;
111
112     /** By default, focus follows mouse. If the user explicitly wants to
113      * turn this off (and instead rely only on the keyboard for changing
114      * focus), we allow them to do this with this relatively special option.
115      * It is not planned to add any different focus models. */
116     bool disable_focus_follows_mouse;
117
118     /** By default, when switching focus to a window on a different output
119      * (e.g. focusing a window on workspace 3 on output VGA-1, coming from
120      * workspace 2 on LVDS-1), the mouse cursor is warped to the center of
121      * that window.
122      *
123      * With the mouse_warping option, you can control when the mouse cursor
124      * should be warped. "none" disables warping entirely, whereas "output"
125      * is the default behavior described above. */
126     warping_t mouse_warping;
127
128     /** Remove borders if they are adjacent to the screen edge.
129      * This is useful if you are reaching scrollbar on the edge of the
130      * screen or do not want to waste a single pixel of displayspace.
131      * By default, this is disabled. */
132     hide_edge_borders_mode_t hide_edge_borders;
133
134     /** By default, a workspace bar is drawn at the bottom of the screen.
135      * If you want to have a more fancy bar, it is recommended to replace
136      * the whole bar by dzen2, for example using the i3-wsbar script which
137      * comes with i3. Thus, you can turn it off entirely. */
138     bool disable_workspace_bar;
139
140     /** Think of the following layout: Horizontal workspace with a tabbed
141      * con on the left of the screen and a terminal on the right of the
142      * screen. You are in the second container in the tabbed container and
143      * focus to the right. By default, i3 will set focus to the terminal on
144      * the right. If you are in the first container in the tabbed container
145      * however, focusing to the left will wrap. This option forces i3 to
146      * always wrap, which will result in you having to use "focus parent"
147      * more often. */
148     bool force_focus_wrapping;
149
150     /** By default, use the RandR API for multi-monitor setups.
151      * Unfortunately, the nVidia binary graphics driver doesn't support
152      * this API. Instead, it only support the less powerful Xinerama API,
153      * which can be enabled by this option.
154      *
155      * Note: this option takes only effect on the initial startup (eg.
156      * reconfiguration is not possible). On startup, the list of screens
157      * is fetched once and never updated. */
158     bool force_xinerama;
159
160     /** Don’t use RandR 1.5 for querying outputs. */
161     bool disable_randr15;
162
163     /** Overwrites output detection (for testing), see src/fake_outputs.c */
164     char *fake_outputs;
165
166     /** Automatic workspace back and forth switching. If this is set, a
167      * switch to the currently active workspace will switch to the
168      * previously focused one instead, making it possible to fast toggle
169      * between two workspaces. */
170     bool workspace_auto_back_and_forth;
171
172     /** By default, urgency is cleared immediately when switching to another
173      * workspace leads to focusing the con with the urgency hint. When having
174      * multiple windows on that workspace, the user needs to guess which
175      * application raised the event. To prevent this, the reset of the urgency
176      * flag can be delayed using an urgency timer. */
177     float workspace_urgency_timer;
178
179     /** Behavior when a window sends a NET_ACTIVE_WINDOW message. */
180     enum {
181         /* Focus if the target workspace is visible, set urgency hint otherwise. */
182         FOWA_SMART,
183         /* Always set the urgency hint. */
184         FOWA_URGENT,
185         /* Always focus the window. */
186         FOWA_FOCUS,
187         /* Ignore the request (no focus, no urgency hint). */
188         FOWA_NONE
189     } focus_on_window_activation;
190
191     /** Specifies whether or not marks should be displayed in the window
192      * decoration. Marks starting with a "_" will be ignored either way. */
193     bool show_marks;
194
195     /** The default border style for new windows. */
196     border_style_t default_border;
197
198     /** The default border style for new floating windows. */
199     border_style_t default_floating_border;
200
201     /** The modifier which needs to be pressed in combination with your mouse
202      * buttons to do things with floating windows (move, resize) */
203     uint32_t floating_modifier;
204
205     /** Maximum and minimum dimensions of a floating window */
206     int32_t floating_maximum_width;
207     int32_t floating_maximum_height;
208     int32_t floating_minimum_width;
209     int32_t floating_minimum_height;
210
211     /* Color codes are stored here */
212     struct config_client {
213         color_t background;
214         struct Colortriple focused;
215         struct Colortriple focused_inactive;
216         struct Colortriple unfocused;
217         struct Colortriple urgent;
218         struct Colortriple placeholder;
219     } client;
220     struct config_bar {
221         struct Colortriple focused;
222         struct Colortriple unfocused;
223         struct Colortriple urgent;
224     } bar;
225
226     /** What should happen when a new popup is opened during fullscreen mode */
227     enum {
228         /* display (and focus) the popup when it belongs to the fullscreen
229          * window only. */
230         PDF_SMART = 0,
231
232         /* leave fullscreen mode unconditionally */
233         PDF_LEAVE_FULLSCREEN = 1,
234
235         /* just ignore the popup, that is, don’t map it */
236         PDF_IGNORE = 2,
237     } popup_during_fullscreen;
238
239     /* The number of currently parsed barconfigs */
240     int number_barconfigs;
241 };
242
243 /**
244  * Holds the status bar configuration (i3bar). One of these structures is
245  * created for each 'bar' block in the config.
246  *
247  */
248 struct Barconfig {
249     /** Automatically generated ID for this bar config. Used by the bar process
250      * to request a specific configuration. */
251     char *id;
252
253     /** Number of outputs in the outputs array */
254     int num_outputs;
255     /** Outputs on which this bar should show up on. We use an array for
256      * simplicity (since we store just strings). */
257     char **outputs;
258
259     /* List of outputs on which the tray is allowed to be shown, in order.
260      * The special value "none" disables it (per default, it will be shown) and
261      * the special value "primary" enabled it on the primary output. */
262     TAILQ_HEAD(tray_outputs_head, tray_output_t)
263     tray_outputs;
264
265     /* Padding around the tray icons. */
266     int tray_padding;
267
268     /** Path to the i3 IPC socket. This option is discouraged since programs
269      * can find out the path by looking for the I3_SOCKET_PATH property on the
270      * root window! */
271     char *socket_path;
272
273     /** Bar display mode (hide unless modifier is pressed or show in dock mode or always hide in invisible mode) */
274     enum { M_DOCK = 0,
275            M_HIDE = 1,
276            M_INVISIBLE = 2 } mode;
277
278     /* The current hidden_state of the bar, which indicates whether it is hidden or shown */
279     enum { S_HIDE = 0,
280            S_SHOW = 1 } hidden_state;
281
282     /** Bar modifier (to show bar when in hide mode). */
283     enum {
284         M_NONE = 0,
285         M_CONTROL = 1,
286         M_SHIFT = 2,
287         M_MOD1 = 3,
288         M_MOD2 = 4,
289         M_MOD3 = 5,
290         M_MOD4 = 6,
291         M_MOD5 = 7
292     } modifier;
293
294     TAILQ_HEAD(bar_bindings_head, Barbinding)
295     bar_bindings;
296
297     /** Bar position (bottom by default). */
298     enum { P_BOTTOM = 0,
299            P_TOP = 1 } position;
300
301     /** Command that should be run to execute i3bar, give a full path if i3bar is not
302      * in your $PATH.
303      * By default just 'i3bar' is executed. */
304     char *i3bar_command;
305
306     /** Command that should be run to get a statusline, for example 'i3status'.
307      * Will be passed to the shell. */
308     char *status_command;
309
310     /** Font specification for all text rendered on the bar. */
311     char *font;
312
313     /** A custom separator to use instead of a vertical line. */
314     char *separator_symbol;
315
316     /** Hide workspace buttons? Configuration option is 'workspace_buttons no'
317      * but we invert the bool to get the correct default when initializing with
318      * zero. */
319     bool hide_workspace_buttons;
320
321     /** Strip workspace numbers? Configuration option is
322      * 'strip_workspace_numbers yes'. */
323     bool strip_workspace_numbers;
324
325     /** Hide mode button? Configuration option is 'binding_mode_indicator no'
326      * but we invert the bool for the same reason as hide_workspace_buttons.*/
327     bool hide_binding_mode_indicator;
328
329     /** Enable verbose mode? Useful for debugging purposes. */
330     bool verbose;
331
332     struct bar_colors {
333         char *background;
334         char *statusline;
335         char *separator;
336
337         char *focused_background;
338         char *focused_statusline;
339         char *focused_separator;
340
341         char *focused_workspace_border;
342         char *focused_workspace_bg;
343         char *focused_workspace_text;
344
345         char *active_workspace_border;
346         char *active_workspace_bg;
347         char *active_workspace_text;
348
349         char *inactive_workspace_border;
350         char *inactive_workspace_bg;
351         char *inactive_workspace_text;
352
353         char *urgent_workspace_border;
354         char *urgent_workspace_bg;
355         char *urgent_workspace_text;
356
357         char *binding_mode_border;
358         char *binding_mode_bg;
359         char *binding_mode_text;
360     } colors;
361
362     TAILQ_ENTRY(Barconfig)
363     configs;
364 };
365
366 /**
367  * Defines a mouse command to be executed instead of the default behavior when
368  * clicking on the non-statusline part of i3bar.
369  *
370  */
371 struct Barbinding {
372     /** The button to be used (e.g., 1 for "button1"). */
373     int input_code;
374
375     /** The command which is to be executed for this button. */
376     char *command;
377
378     TAILQ_ENTRY(Barbinding)
379     bindings;
380 };
381
382 struct tray_output_t {
383     char *output;
384
385     TAILQ_ENTRY(tray_output_t)
386     tray_outputs;
387 };
388
389 /**
390  * Finds the configuration file to use (either the one specified by
391  * override_configpath), the user’s one or the system default) and calls
392  * parse_file().
393  *
394  * If you specify override_configpath, only this path is used to look for a
395  * configuration file.
396  *
397  * If use_nagbar is false, don't try to start i3-nagbar but log the errors to
398  * stdout/stderr instead.
399  *
400  */
401 bool parse_configuration(const char *override_configpath, bool use_nagbar);
402
403 /**
404  * Reads the configuration from ~/.i3/config or /etc/i3/config if not found.
405  *
406  * If you specify override_configpath, only this path is used to look for a
407  * configuration file.
408  *
409  */
410 void load_configuration(xcb_connection_t *conn, const char *override_configfile, bool reload);
411
412 /**
413  * Ungrabs all keys, to be called before re-grabbing the keys because of a
414  * mapping_notify event or a configuration file reload
415  *
416  */
417 void ungrab_all_keys(xcb_connection_t *conn);
418
419 /**
420  * Sends the current bar configuration as an event to all barconfig_update listeners.
421  *
422  */
423 void update_barconfig();
424
425 /**
426  * Kills the configerror i3-nagbar process, if any.
427  *
428  * Called when reloading/restarting.
429  *
430  * If wait_for_it is set (restarting), this function will waitpid(), otherwise,
431  * ev is assumed to handle it (reloading).
432  *
433  */
434 void kill_configerror_nagbar(bool wait_for_it);