]> git.sur5r.net Git - i3/i3/blob - include/configuration.h
Add "focus_wrapping" option
[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     /** When focus wrapping is enabled (the default), attempting to
141      * move focus past the edge of the screen (in other words, in a
142      * direction in which there are no more containers to focus) will
143      * cause the focus to wrap to the opposite edge of the current
144      * container. When it is disabled, nothing happens; the current
145      * focus is preserved.  */
146     bool focus_wrapping;
147
148     /** Think of the following layout: Horizontal workspace with a tabbed
149      * con on the left of the screen and a terminal on the right of the
150      * screen. You are in the second container in the tabbed container and
151      * focus to the right. By default, i3 will set focus to the terminal on
152      * the right. If you are in the first container in the tabbed container
153      * however, focusing to the left will wrap. This option forces i3 to
154      * always wrap, which will result in you having to use "focus parent"
155      * more often. */
156     bool force_focus_wrapping;
157
158     /** By default, use the RandR API for multi-monitor setups.
159      * Unfortunately, the nVidia binary graphics driver doesn't support
160      * this API. Instead, it only support the less powerful Xinerama API,
161      * which can be enabled by this option.
162      *
163      * Note: this option takes only effect on the initial startup (eg.
164      * reconfiguration is not possible). On startup, the list of screens
165      * is fetched once and never updated. */
166     bool force_xinerama;
167
168     /** Don’t use RandR 1.5 for querying outputs. */
169     bool disable_randr15;
170
171     /** Overwrites output detection (for testing), see src/fake_outputs.c */
172     char *fake_outputs;
173
174     /** Automatic workspace back and forth switching. If this is set, a
175      * switch to the currently active workspace will switch to the
176      * previously focused one instead, making it possible to fast toggle
177      * between two workspaces. */
178     bool workspace_auto_back_and_forth;
179
180     /** By default, urgency is cleared immediately when switching to another
181      * workspace leads to focusing the con with the urgency hint. When having
182      * multiple windows on that workspace, the user needs to guess which
183      * application raised the event. To prevent this, the reset of the urgency
184      * flag can be delayed using an urgency timer. */
185     float workspace_urgency_timer;
186
187     /** Behavior when a window sends a NET_ACTIVE_WINDOW message. */
188     enum {
189         /* Focus if the target workspace is visible, set urgency hint otherwise. */
190         FOWA_SMART,
191         /* Always set the urgency hint. */
192         FOWA_URGENT,
193         /* Always focus the window. */
194         FOWA_FOCUS,
195         /* Ignore the request (no focus, no urgency hint). */
196         FOWA_NONE
197     } focus_on_window_activation;
198
199     /** Specifies whether or not marks should be displayed in the window
200      * decoration. Marks starting with a "_" will be ignored either way. */
201     bool show_marks;
202
203     /** The default border style for new windows. */
204     border_style_t default_border;
205
206     /** The default border style for new floating windows. */
207     border_style_t default_floating_border;
208
209     /** The modifier which needs to be pressed in combination with your mouse
210      * buttons to do things with floating windows (move, resize) */
211     uint32_t floating_modifier;
212
213     /** Maximum and minimum dimensions of a floating window */
214     int32_t floating_maximum_width;
215     int32_t floating_maximum_height;
216     int32_t floating_minimum_width;
217     int32_t floating_minimum_height;
218
219     /* Color codes are stored here */
220     struct config_client {
221         color_t background;
222         struct Colortriple focused;
223         struct Colortriple focused_inactive;
224         struct Colortriple unfocused;
225         struct Colortriple urgent;
226         struct Colortriple placeholder;
227     } client;
228     struct config_bar {
229         struct Colortriple focused;
230         struct Colortriple unfocused;
231         struct Colortriple urgent;
232     } bar;
233
234     /** What should happen when a new popup is opened during fullscreen mode */
235     enum {
236         /* display (and focus) the popup when it belongs to the fullscreen
237          * window only. */
238         PDF_SMART = 0,
239
240         /* leave fullscreen mode unconditionally */
241         PDF_LEAVE_FULLSCREEN = 1,
242
243         /* just ignore the popup, that is, don’t map it */
244         PDF_IGNORE = 2,
245     } popup_during_fullscreen;
246
247     /* The number of currently parsed barconfigs */
248     int number_barconfigs;
249 };
250
251 /**
252  * Holds the status bar configuration (i3bar). One of these structures is
253  * created for each 'bar' block in the config.
254  *
255  */
256 struct Barconfig {
257     /** Automatically generated ID for this bar config. Used by the bar process
258      * to request a specific configuration. */
259     char *id;
260
261     /** Number of outputs in the outputs array */
262     int num_outputs;
263     /** Outputs on which this bar should show up on. We use an array for
264      * simplicity (since we store just strings). */
265     char **outputs;
266
267     /* List of outputs on which the tray is allowed to be shown, in order.
268      * The special value "none" disables it (per default, it will be shown) and
269      * the special value "primary" enabled it on the primary output. */
270     TAILQ_HEAD(tray_outputs_head, tray_output_t)
271     tray_outputs;
272
273     /* Padding around the tray icons. */
274     int tray_padding;
275
276     /** Path to the i3 IPC socket. This option is discouraged since programs
277      * can find out the path by looking for the I3_SOCKET_PATH property on the
278      * root window! */
279     char *socket_path;
280
281     /** Bar display mode (hide unless modifier is pressed or show in dock mode or always hide in invisible mode) */
282     enum { M_DOCK = 0,
283            M_HIDE = 1,
284            M_INVISIBLE = 2 } mode;
285
286     /* The current hidden_state of the bar, which indicates whether it is hidden or shown */
287     enum { S_HIDE = 0,
288            S_SHOW = 1 } hidden_state;
289
290     /** Bar modifier (to show bar when in hide mode). */
291     enum {
292         M_NONE = 0,
293         M_CONTROL = 1,
294         M_SHIFT = 2,
295         M_MOD1 = 3,
296         M_MOD2 = 4,
297         M_MOD3 = 5,
298         M_MOD4 = 6,
299         M_MOD5 = 7
300     } modifier;
301
302     TAILQ_HEAD(bar_bindings_head, Barbinding)
303     bar_bindings;
304
305     /** Bar position (bottom by default). */
306     enum { P_BOTTOM = 0,
307            P_TOP = 1 } position;
308
309     /** Command that should be run to execute i3bar, give a full path if i3bar is not
310      * in your $PATH.
311      * By default just 'i3bar' is executed. */
312     char *i3bar_command;
313
314     /** Command that should be run to get a statusline, for example 'i3status'.
315      * Will be passed to the shell. */
316     char *status_command;
317
318     /** Font specification for all text rendered on the bar. */
319     char *font;
320
321     /** A custom separator to use instead of a vertical line. */
322     char *separator_symbol;
323
324     /** Hide workspace buttons? Configuration option is 'workspace_buttons no'
325      * but we invert the bool to get the correct default when initializing with
326      * zero. */
327     bool hide_workspace_buttons;
328
329     /** Strip workspace numbers? Configuration option is
330      * 'strip_workspace_numbers yes'. */
331     bool strip_workspace_numbers;
332
333     /** Hide mode button? Configuration option is 'binding_mode_indicator no'
334      * but we invert the bool for the same reason as hide_workspace_buttons.*/
335     bool hide_binding_mode_indicator;
336
337     /** Enable verbose mode? Useful for debugging purposes. */
338     bool verbose;
339
340     struct bar_colors {
341         char *background;
342         char *statusline;
343         char *separator;
344
345         char *focused_background;
346         char *focused_statusline;
347         char *focused_separator;
348
349         char *focused_workspace_border;
350         char *focused_workspace_bg;
351         char *focused_workspace_text;
352
353         char *active_workspace_border;
354         char *active_workspace_bg;
355         char *active_workspace_text;
356
357         char *inactive_workspace_border;
358         char *inactive_workspace_bg;
359         char *inactive_workspace_text;
360
361         char *urgent_workspace_border;
362         char *urgent_workspace_bg;
363         char *urgent_workspace_text;
364
365         char *binding_mode_border;
366         char *binding_mode_bg;
367         char *binding_mode_text;
368     } colors;
369
370     TAILQ_ENTRY(Barconfig)
371     configs;
372 };
373
374 /**
375  * Defines a mouse command to be executed instead of the default behavior when
376  * clicking on the non-statusline part of i3bar.
377  *
378  */
379 struct Barbinding {
380     /** The button to be used (e.g., 1 for "button1"). */
381     int input_code;
382
383     /** The command which is to be executed for this button. */
384     char *command;
385
386     TAILQ_ENTRY(Barbinding)
387     bindings;
388 };
389
390 struct tray_output_t {
391     char *output;
392
393     TAILQ_ENTRY(tray_output_t)
394     tray_outputs;
395 };
396
397 /**
398  * Finds the configuration file to use (either the one specified by
399  * override_configpath), the user’s one or the system default) and calls
400  * parse_file().
401  *
402  * If you specify override_configpath, only this path is used to look for a
403  * configuration file.
404  *
405  * If use_nagbar is false, don't try to start i3-nagbar but log the errors to
406  * stdout/stderr instead.
407  *
408  */
409 bool parse_configuration(const char *override_configpath, bool use_nagbar);
410
411 /**
412  * Reads the configuration from ~/.i3/config or /etc/i3/config if not found.
413  *
414  * If you specify override_configpath, only this path is used to look for a
415  * configuration file.
416  *
417  */
418 void load_configuration(xcb_connection_t *conn, const char *override_configfile, bool reload);
419
420 /**
421  * Ungrabs all keys, to be called before re-grabbing the keys because of a
422  * mapping_notify event or a configuration file reload
423  *
424  */
425 void ungrab_all_keys(xcb_connection_t *conn);
426
427 /**
428  * Sends the current bar configuration as an event to all barconfig_update listeners.
429  *
430  */
431 void update_barconfig();
432
433 /**
434  * Kills the configerror i3-nagbar process, if any.
435  *
436  * Called when reloading/restarting.
437  *
438  * If wait_for_it is set (restarting), this function will waitpid(), otherwise,
439  * ev is assumed to handle it (reloading).
440  *
441  */
442 void kill_configerror_nagbar(bool wait_for_it);