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