]> git.sur5r.net Git - i3/i3/blob - src/config_directives.c
add decoration_border color for the actual client borders
[i3/i3] / src / config_directives.c
1 #undef I3__FILE__
2 #define I3__FILE__ "config_directives.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_directives.c: all config storing functions (see config_parser.c)
10  *
11  */
12 #include <float.h>
13 #include <stdarg.h>
14
15 #include "all.h"
16
17 /*******************************************************************************
18  * Criteria functions.
19  ******************************************************************************/
20
21 static int criteria_next_state;
22
23 /*
24  * Initializes the specified 'Match' data structure and the initial state of
25  * commands.c for matching target windows of a command.
26  *
27  */
28 CFGFUN(criteria_init, int _state) {
29     criteria_next_state = _state;
30
31     DLOG("Initializing criteria, current_match = %p, state = %d\n", current_match, _state);
32     match_free(current_match);
33     match_init(current_match);
34 }
35
36 CFGFUN(criteria_pop_state) {
37     result->next_state = criteria_next_state;
38 }
39
40 /*
41  * Interprets a ctype=cvalue pair and adds it to the current match
42  * specification.
43  *
44  */
45 CFGFUN(criteria_add, const char *ctype, const char *cvalue) {
46     match_parse_property(current_match, ctype, cvalue);
47 }
48
49 /*******************************************************************************
50  * Utility functions
51  ******************************************************************************/
52
53 static bool eval_boolstr(const char *str) {
54     return (strcasecmp(str, "1") == 0 ||
55             strcasecmp(str, "yes") == 0 ||
56             strcasecmp(str, "true") == 0 ||
57             strcasecmp(str, "on") == 0 ||
58             strcasecmp(str, "enable") == 0 ||
59             strcasecmp(str, "active") == 0);
60 }
61
62 /*
63  * A utility function to convert a string containing the group and modifiers to
64  * the corresponding bit mask.
65  */
66 i3_event_state_mask_t event_state_from_str(const char *str) {
67     /* It might be better to use strtok() here, but the simpler strstr() should
68      * do for now. */
69     i3_event_state_mask_t result = 0;
70     if (str == NULL)
71         return result;
72     if (strstr(str, "Mod1") != NULL)
73         result |= XCB_KEY_BUT_MASK_MOD_1;
74     if (strstr(str, "Mod2") != NULL)
75         result |= XCB_KEY_BUT_MASK_MOD_2;
76     if (strstr(str, "Mod3") != NULL)
77         result |= XCB_KEY_BUT_MASK_MOD_3;
78     if (strstr(str, "Mod4") != NULL)
79         result |= XCB_KEY_BUT_MASK_MOD_4;
80     if (strstr(str, "Mod5") != NULL)
81         result |= XCB_KEY_BUT_MASK_MOD_5;
82     if (strstr(str, "Control") != NULL ||
83         strstr(str, "Ctrl") != NULL)
84         result |= XCB_KEY_BUT_MASK_CONTROL;
85     if (strstr(str, "Shift") != NULL)
86         result |= XCB_KEY_BUT_MASK_SHIFT;
87
88     if (strstr(str, "Group1") != NULL)
89         result |= (I3_XKB_GROUP_MASK_1 << 16);
90     if (strstr(str, "Group2") != NULL ||
91         strstr(str, "Mode_switch") != NULL)
92         result |= (I3_XKB_GROUP_MASK_2 << 16);
93     if (strstr(str, "Group3") != NULL)
94         result |= (I3_XKB_GROUP_MASK_3 << 16);
95     if (strstr(str, "Group4") != NULL)
96         result |= (I3_XKB_GROUP_MASK_4 << 16);
97     return result;
98 }
99
100 static char *font_pattern;
101
102 CFGFUN(font, const char *font) {
103     config.font = load_font(font, true);
104     set_font(&config.font);
105
106     /* Save the font pattern for using it as bar font later on */
107     FREE(font_pattern);
108     font_pattern = sstrdup(font);
109 }
110
111 CFGFUN(binding, const char *bindtype, const char *modifiers, const char *key, const char *release, const char *border, const char *whole_window, const char *command) {
112     configure_binding(bindtype, modifiers, key, release, border, whole_window, command, DEFAULT_BINDING_MODE, false);
113 }
114
115 /*******************************************************************************
116  * Mode handling
117  ******************************************************************************/
118
119 static char *current_mode;
120 static bool current_mode_pango_markup;
121
122 CFGFUN(mode_binding, const char *bindtype, const char *modifiers, const char *key, const char *release, const char *border, const char *whole_window, const char *command) {
123     configure_binding(bindtype, modifiers, key, release, border, whole_window, command, current_mode, current_mode_pango_markup);
124 }
125
126 CFGFUN(enter_mode, const char *pango_markup, const char *modename) {
127     if (strcasecmp(modename, DEFAULT_BINDING_MODE) == 0) {
128         ELOG("You cannot use the name %s for your mode\n", DEFAULT_BINDING_MODE);
129         exit(1);
130     }
131     DLOG("\t now in mode %s\n", modename);
132     FREE(current_mode);
133     current_mode = sstrdup(modename);
134     current_mode_pango_markup = (pango_markup != NULL);
135 }
136
137 CFGFUN(exec, const char *exectype, const char *no_startup_id, const char *command) {
138     struct Autostart *new = smalloc(sizeof(struct Autostart));
139     new->command = sstrdup(command);
140     new->no_startup_id = (no_startup_id != NULL);
141     if (strcmp(exectype, "exec") == 0) {
142         TAILQ_INSERT_TAIL(&autostarts, new, autostarts);
143     } else {
144         TAILQ_INSERT_TAIL(&autostarts_always, new, autostarts_always);
145     }
146 }
147
148 CFGFUN(for_window, const char *command) {
149     if (match_is_empty(current_match)) {
150         ELOG("Match is empty, ignoring this for_window statement\n");
151         return;
152     }
153     DLOG("\t should execute command %s for the criteria mentioned above\n", command);
154     Assignment *assignment = scalloc(1, sizeof(Assignment));
155     assignment->type = A_COMMAND;
156     match_copy(&(assignment->match), current_match);
157     assignment->dest.command = sstrdup(command);
158     TAILQ_INSERT_TAIL(&assignments, assignment, assignments);
159 }
160
161 CFGFUN(floating_minimum_size, const long width, const long height) {
162     config.floating_minimum_width = width;
163     config.floating_minimum_height = height;
164 }
165
166 CFGFUN(floating_maximum_size, const long width, const long height) {
167     config.floating_maximum_width = width;
168     config.floating_maximum_height = height;
169 }
170
171 CFGFUN(floating_modifier, const char *modifiers) {
172     config.floating_modifier = event_state_from_str(modifiers);
173 }
174
175 CFGFUN(default_orientation, const char *orientation) {
176     if (strcmp(orientation, "horizontal") == 0)
177         config.default_orientation = HORIZ;
178     else if (strcmp(orientation, "vertical") == 0)
179         config.default_orientation = VERT;
180     else
181         config.default_orientation = NO_ORIENTATION;
182 }
183
184 CFGFUN(workspace_layout, const char *layout) {
185     if (strcmp(layout, "default") == 0)
186         config.default_layout = L_DEFAULT;
187     else if (strcmp(layout, "stacking") == 0 ||
188              strcmp(layout, "stacked") == 0)
189         config.default_layout = L_STACKED;
190     else
191         config.default_layout = L_TABBED;
192 }
193
194 CFGFUN(new_window, const char *windowtype, const char *border, const long width) {
195     int border_style;
196     int border_width;
197
198     if (strcmp(border, "1pixel") == 0) {
199         border_style = BS_PIXEL;
200         border_width = 1;
201     } else if (strcmp(border, "none") == 0) {
202         border_style = BS_NONE;
203         border_width = 0;
204     } else if (strcmp(border, "pixel") == 0) {
205         border_style = BS_PIXEL;
206         border_width = width;
207     } else {
208         border_style = BS_NORMAL;
209         border_width = width;
210     }
211
212     if (strcmp(windowtype, "new_window") == 0) {
213         DLOG("default tiled border style = %d and border width = %d (%d physical px)\n",
214              border_style, border_width, logical_px(border_width));
215         config.default_border = border_style;
216         config.default_border_width = logical_px(border_width);
217     } else {
218         DLOG("default floating border style = %d and border width = %d (%d physical px)\n",
219              border_style, border_width, logical_px(border_width));
220         config.default_floating_border = border_style;
221         config.default_floating_border_width = logical_px(border_width);
222     }
223 }
224
225 CFGFUN(hide_edge_borders, const char *borders) {
226     if (strcmp(borders, "vertical") == 0)
227         config.hide_edge_borders = ADJ_LEFT_SCREEN_EDGE | ADJ_RIGHT_SCREEN_EDGE;
228     else if (strcmp(borders, "horizontal") == 0)
229         config.hide_edge_borders = ADJ_UPPER_SCREEN_EDGE | ADJ_LOWER_SCREEN_EDGE;
230     else if (strcmp(borders, "both") == 0)
231         config.hide_edge_borders = ADJ_LEFT_SCREEN_EDGE | ADJ_RIGHT_SCREEN_EDGE | ADJ_UPPER_SCREEN_EDGE | ADJ_LOWER_SCREEN_EDGE;
232     else if (strcmp(borders, "none") == 0)
233         config.hide_edge_borders = ADJ_NONE;
234     else if (eval_boolstr(borders))
235         config.hide_edge_borders = ADJ_LEFT_SCREEN_EDGE | ADJ_RIGHT_SCREEN_EDGE;
236     else
237         config.hide_edge_borders = ADJ_NONE;
238 }
239
240 CFGFUN(focus_follows_mouse, const char *value) {
241     config.disable_focus_follows_mouse = !eval_boolstr(value);
242 }
243
244 CFGFUN(mouse_warping, const char *value) {
245     if (strcmp(value, "none") == 0)
246         config.mouse_warping = POINTER_WARPING_NONE;
247     else if (strcmp(value, "output") == 0)
248         config.mouse_warping = POINTER_WARPING_OUTPUT;
249 }
250
251 CFGFUN(force_xinerama, const char *value) {
252     config.force_xinerama = eval_boolstr(value);
253 }
254
255 CFGFUN(force_focus_wrapping, const char *value) {
256     config.force_focus_wrapping = eval_boolstr(value);
257 }
258
259 CFGFUN(workspace_back_and_forth, const char *value) {
260     config.workspace_auto_back_and_forth = eval_boolstr(value);
261 }
262
263 CFGFUN(fake_outputs, const char *outputs) {
264     config.fake_outputs = sstrdup(outputs);
265 }
266
267 CFGFUN(force_display_urgency_hint, const long duration_ms) {
268     config.workspace_urgency_timer = duration_ms / 1000.0;
269 }
270
271 CFGFUN(focus_on_window_activation, const char *mode) {
272     if (strcmp(mode, "smart") == 0)
273         config.focus_on_window_activation = FOWA_SMART;
274     else if (strcmp(mode, "urgent") == 0)
275         config.focus_on_window_activation = FOWA_URGENT;
276     else if (strcmp(mode, "focus") == 0)
277         config.focus_on_window_activation = FOWA_FOCUS;
278     else if (strcmp(mode, "none") == 0)
279         config.focus_on_window_activation = FOWA_NONE;
280     else {
281         ELOG("Unknown focus_on_window_activation mode \"%s\", ignoring it.\n", mode);
282         return;
283     }
284
285     DLOG("Set new focus_on_window_activation mode = %i.\n", config.focus_on_window_activation);
286 }
287
288 CFGFUN(show_marks, const char *value) {
289     config.show_marks = eval_boolstr(value);
290 }
291
292 CFGFUN(workspace, const char *workspace, const char *output) {
293     DLOG("Assigning workspace \"%s\" to output \"%s\"\n", workspace, output);
294     /* Check for earlier assignments of the same workspace so that we
295      * don’t have assignments of a single workspace to different
296      * outputs */
297     struct Workspace_Assignment *assignment;
298     bool duplicate = false;
299     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
300         if (strcasecmp(assignment->name, workspace) == 0) {
301             ELOG("You have a duplicate workspace assignment for workspace \"%s\"\n",
302                  workspace);
303             assignment->output = sstrdup(output);
304             duplicate = true;
305         }
306     }
307     if (!duplicate) {
308         assignment = scalloc(1, sizeof(struct Workspace_Assignment));
309         assignment->name = sstrdup(workspace);
310         assignment->output = sstrdup(output);
311         TAILQ_INSERT_TAIL(&ws_assignments, assignment, ws_assignments);
312     }
313 }
314
315 CFGFUN(ipc_socket, const char *path) {
316     config.ipc_socket_path = sstrdup(path);
317 }
318
319 CFGFUN(restart_state, const char *path) {
320     config.restart_state_path = sstrdup(path);
321 }
322
323 CFGFUN(popup_during_fullscreen, const char *value) {
324     if (strcmp(value, "ignore") == 0) {
325         config.popup_during_fullscreen = PDF_IGNORE;
326     } else if (strcmp(value, "leave_fullscreen") == 0) {
327         config.popup_during_fullscreen = PDF_LEAVE_FULLSCREEN;
328     } else {
329         config.popup_during_fullscreen = PDF_SMART;
330     }
331 }
332
333 CFGFUN(color_single, const char *colorclass, const char *color) {
334     /* used for client.background only currently */
335     config.client.background = draw_util_hex_to_color(color);
336 }
337
338 CFGFUN(color, const char *colorclass, const char *border, const char *background, const char *text, const char *indicator, const char *decoration_border) {
339 #define APPLY_COLORS(classname)                                                                        \
340     do {                                                                                               \
341         if (strcmp(colorclass, "client." #classname) == 0) {                                           \
342             config.client.classname.border = draw_util_hex_to_color(border);                           \
343             config.client.classname.background = draw_util_hex_to_color(background);                   \
344             config.client.classname.text = draw_util_hex_to_color(text);                               \
345             if (indicator != NULL) {                                                                   \
346                 config.client.classname.indicator = draw_util_hex_to_color(indicator);                 \
347             }                                                                                          \
348             if (decoration_border != NULL) {                                                           \
349                 config.client.classname.decoration_border = draw_util_hex_to_color(decoration_border); \
350             }                                                                                          \
351         }                                                                                              \
352     } while (0)
353
354     APPLY_COLORS(focused_inactive);
355     APPLY_COLORS(focused);
356     APPLY_COLORS(unfocused);
357     APPLY_COLORS(urgent);
358     APPLY_COLORS(placeholder);
359
360 #undef APPLY_COLORS
361 }
362
363 CFGFUN(assign, const char *workspace) {
364     if (match_is_empty(current_match)) {
365         ELOG("Match is empty, ignoring this assignment\n");
366         return;
367     }
368     DLOG("New assignment, using above criteria, to workspace \"%s\".\n", workspace);
369     Assignment *assignment = scalloc(1, sizeof(Assignment));
370     match_copy(&(assignment->match), current_match);
371     assignment->type = A_TO_WORKSPACE;
372     assignment->dest.workspace = sstrdup(workspace);
373     TAILQ_INSERT_TAIL(&assignments, assignment, assignments);
374 }
375
376 CFGFUN(no_focus) {
377     if (match_is_empty(current_match)) {
378         ELOG("Match is empty, ignoring this assignment\n");
379         return;
380     }
381
382     DLOG("New assignment, using above criteria, to ignore focus on manage.\n");
383     Assignment *assignment = scalloc(1, sizeof(Assignment));
384     match_copy(&(assignment->match), current_match);
385     assignment->type = A_NO_FOCUS;
386     TAILQ_INSERT_TAIL(&assignments, assignment, assignments);
387 }
388
389 /*******************************************************************************
390  * Bar configuration (i3bar)
391  ******************************************************************************/
392
393 static Barconfig *current_bar;
394
395 CFGFUN(bar_font, const char *font) {
396     FREE(current_bar->font);
397     current_bar->font = sstrdup(font);
398 }
399
400 CFGFUN(bar_separator_symbol, const char *separator) {
401     FREE(current_bar->separator_symbol);
402     current_bar->separator_symbol = sstrdup(separator);
403 }
404
405 CFGFUN(bar_mode, const char *mode) {
406     current_bar->mode = (strcmp(mode, "dock") == 0 ? M_DOCK : (strcmp(mode, "hide") == 0 ? M_HIDE : M_INVISIBLE));
407 }
408
409 CFGFUN(bar_hidden_state, const char *hidden_state) {
410     current_bar->hidden_state = (strcmp(hidden_state, "hide") == 0 ? S_HIDE : S_SHOW);
411 }
412
413 CFGFUN(bar_id, const char *bar_id) {
414     current_bar->id = sstrdup(bar_id);
415 }
416
417 CFGFUN(bar_output, const char *output) {
418     int new_outputs = current_bar->num_outputs + 1;
419     current_bar->outputs = srealloc(current_bar->outputs, sizeof(char *) * new_outputs);
420     current_bar->outputs[current_bar->num_outputs] = sstrdup(output);
421     current_bar->num_outputs = new_outputs;
422 }
423
424 CFGFUN(bar_verbose, const char *verbose) {
425     current_bar->verbose = eval_boolstr(verbose);
426 }
427
428 CFGFUN(bar_modifier, const char *modifier) {
429     if (strcmp(modifier, "Mod1") == 0)
430         current_bar->modifier = M_MOD1;
431     else if (strcmp(modifier, "Mod2") == 0)
432         current_bar->modifier = M_MOD2;
433     else if (strcmp(modifier, "Mod3") == 0)
434         current_bar->modifier = M_MOD3;
435     else if (strcmp(modifier, "Mod4") == 0)
436         current_bar->modifier = M_MOD4;
437     else if (strcmp(modifier, "Mod5") == 0)
438         current_bar->modifier = M_MOD5;
439     else if (strcmp(modifier, "Control") == 0 ||
440              strcmp(modifier, "Ctrl") == 0)
441         current_bar->modifier = M_CONTROL;
442     else if (strcmp(modifier, "Shift") == 0)
443         current_bar->modifier = M_SHIFT;
444 }
445
446 static void bar_configure_binding(const char *button, const char *command) {
447     if (strncasecmp(button, "button", strlen("button")) != 0) {
448         ELOG("Bindings for a bar can only be mouse bindings, not \"%s\", ignoring.\n", button);
449         return;
450     }
451
452     int input_code = atoi(button + strlen("button"));
453     if (input_code < 1) {
454         ELOG("Button \"%s\" does not seem to be in format 'buttonX'.\n", button);
455         return;
456     }
457
458     struct Barbinding *current;
459     TAILQ_FOREACH(current, &(current_bar->bar_bindings), bindings) {
460         if (current->input_code == input_code) {
461             ELOG("command for button %s was already specified, ignoring.\n", button);
462             return;
463         }
464     }
465
466     struct Barbinding *new_binding = scalloc(1, sizeof(struct Barbinding));
467     new_binding->input_code = input_code;
468     new_binding->command = sstrdup(command);
469     TAILQ_INSERT_TAIL(&(current_bar->bar_bindings), new_binding, bindings);
470 }
471
472 CFGFUN(bar_wheel_up_cmd, const char *command) {
473     ELOG("'wheel_up_cmd' is deprecated. Please us 'bindsym button4 %s' instead.\n", command);
474     bar_configure_binding("button4", command);
475 }
476
477 CFGFUN(bar_wheel_down_cmd, const char *command) {
478     ELOG("'wheel_down_cmd' is deprecated. Please us 'bindsym button5 %s' instead.\n", command);
479     bar_configure_binding("button5", command);
480 }
481
482 CFGFUN(bar_bindsym, const char *button, const char *command) {
483     bar_configure_binding(button, command);
484 }
485
486 CFGFUN(bar_position, const char *position) {
487     current_bar->position = (strcmp(position, "top") == 0 ? P_TOP : P_BOTTOM);
488 }
489
490 CFGFUN(bar_i3bar_command, const char *i3bar_command) {
491     FREE(current_bar->i3bar_command);
492     current_bar->i3bar_command = sstrdup(i3bar_command);
493 }
494
495 CFGFUN(bar_color, const char *colorclass, const char *border, const char *background, const char *text) {
496 #define APPLY_COLORS(classname)                                           \
497     do {                                                                  \
498         if (strcmp(colorclass, #classname) == 0) {                        \
499             if (text != NULL) {                                           \
500                 /* New syntax: border, background, text */                \
501                 current_bar->colors.classname##_border = sstrdup(border); \
502                 current_bar->colors.classname##_bg = sstrdup(background); \
503                 current_bar->colors.classname##_text = sstrdup(text);     \
504             } else {                                                      \
505                 /* Old syntax: text, background */                        \
506                 current_bar->colors.classname##_bg = sstrdup(background); \
507                 current_bar->colors.classname##_text = sstrdup(border);   \
508             }                                                             \
509         }                                                                 \
510     } while (0)
511
512     APPLY_COLORS(focused_workspace);
513     APPLY_COLORS(active_workspace);
514     APPLY_COLORS(inactive_workspace);
515     APPLY_COLORS(urgent_workspace);
516     APPLY_COLORS(binding_mode);
517
518 #undef APPLY_COLORS
519 }
520
521 CFGFUN(bar_socket_path, const char *socket_path) {
522     FREE(current_bar->socket_path);
523     current_bar->socket_path = sstrdup(socket_path);
524 }
525
526 CFGFUN(bar_tray_output, const char *output) {
527     struct tray_output_t *tray_output = scalloc(1, sizeof(struct tray_output_t));
528     tray_output->output = sstrdup(output);
529     TAILQ_INSERT_TAIL(&(current_bar->tray_outputs), tray_output, tray_outputs);
530 }
531
532 CFGFUN(bar_tray_padding, const long padding_px) {
533     current_bar->tray_padding = padding_px;
534 }
535
536 CFGFUN(bar_color_single, const char *colorclass, const char *color) {
537     if (strcmp(colorclass, "background") == 0)
538         current_bar->colors.background = sstrdup(color);
539     else if (strcmp(colorclass, "separator") == 0)
540         current_bar->colors.separator = sstrdup(color);
541     else if (strcmp(colorclass, "statusline") == 0)
542         current_bar->colors.statusline = sstrdup(color);
543     else if (strcmp(colorclass, "focused_background") == 0)
544         current_bar->colors.focused_background = sstrdup(color);
545     else if (strcmp(colorclass, "focused_separator") == 0)
546         current_bar->colors.focused_separator = sstrdup(color);
547     else
548         current_bar->colors.focused_statusline = sstrdup(color);
549 }
550
551 CFGFUN(bar_status_command, const char *command) {
552     FREE(current_bar->status_command);
553     current_bar->status_command = sstrdup(command);
554 }
555
556 CFGFUN(bar_binding_mode_indicator, const char *value) {
557     current_bar->hide_binding_mode_indicator = !eval_boolstr(value);
558 }
559
560 CFGFUN(bar_workspace_buttons, const char *value) {
561     current_bar->hide_workspace_buttons = !eval_boolstr(value);
562 }
563
564 CFGFUN(bar_strip_workspace_numbers, const char *value) {
565     current_bar->strip_workspace_numbers = eval_boolstr(value);
566 }
567
568 CFGFUN(bar_start) {
569     current_bar = scalloc(1, sizeof(struct Barconfig));
570     TAILQ_INIT(&(current_bar->bar_bindings));
571     TAILQ_INIT(&(current_bar->tray_outputs));
572     current_bar->tray_padding = 2;
573 }
574
575 CFGFUN(bar_finish) {
576     DLOG("\t new bar configuration finished, saving.\n");
577     /* Generate a unique ID for this bar if not already configured */
578     if (current_bar->id == NULL)
579         sasprintf(&current_bar->id, "bar-%d", config.number_barconfigs);
580
581     config.number_barconfigs++;
582
583     /* If no font was explicitly set, we use the i3 font as default */
584     if (current_bar->font == NULL && font_pattern != NULL)
585         current_bar->font = sstrdup(font_pattern);
586
587     TAILQ_INSERT_TAIL(&barconfigs, current_bar, configs);
588     /* Simply reset the pointer, but don't free the resources. */
589     current_bar = NULL;
590 }