i3
config_directives.c
Go to the documentation of this file.
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 <wordexp.h>
13 
14 /*******************************************************************************
15  * Include functions.
16  ******************************************************************************/
17 
18 CFGFUN(include, const char *pattern) {
19  DLOG("include %s\n", pattern);
20 
21  wordexp_t p;
22  const int ret = wordexp(pattern, &p, 0);
23  if (ret != 0) {
24  ELOG("wordexp(%s): error %d\n", pattern, ret);
25  result->has_errors = true;
26  return;
27  }
28  char **w = p.we_wordv;
29  for (size_t i = 0; i < p.we_wordc; i++) {
30  char resolved_path[PATH_MAX] = {'\0'};
31  if (realpath(w[i], resolved_path) == NULL) {
32  LOG("Skipping %s: %s\n", w[i], strerror(errno));
33  continue;
34  }
35 
36  bool skip = false;
37  IncludedFile *file;
38  TAILQ_FOREACH (file, &included_files, files) {
39  if (strcmp(file->path, resolved_path) == 0) {
40  skip = true;
41  break;
42  }
43  }
44  if (skip) {
45  LOG("Skipping file %s (already included)\n", resolved_path);
46  continue;
47  }
48 
49  LOG("Including config file %s\n", resolved_path);
50 
51  file = scalloc(1, sizeof(IncludedFile));
52  file->path = sstrdup(resolved_path);
53  TAILQ_INSERT_TAIL(&included_files, file, files);
54 
55  struct stack stack;
56  memset(&stack, '\0', sizeof(struct stack));
57  struct parser_ctx ctx = {
58  .use_nagbar = result->ctx->use_nagbar,
59  /* The include mechanism was added in v4, so we can skip the
60  * auto-detection and get rid of the risk of detecting the wrong
61  * version in potentially very short include fragments: */
62  .assume_v4 = true,
63  .stack = &stack,
64  .variables = result->ctx->variables,
65  };
66  switch (parse_file(&ctx, resolved_path, file)) {
67  case PARSE_FILE_SUCCESS:
68  break;
69 
70  case PARSE_FILE_FAILED:
71  ELOG("including config file %s: %s\n", resolved_path, strerror(errno));
72  /* fallthrough */
73 
75  result->has_errors = true;
76  TAILQ_REMOVE(&included_files, file, files);
77  FREE(file->path);
78  FREE(file->raw_contents);
80  FREE(file);
81  break;
82 
83  default:
84  /* missing case statement */
85  assert(false);
86  break;
87  }
88  }
89  wordfree(&p);
90 }
91 
92 /*******************************************************************************
93  * Criteria functions.
94  ******************************************************************************/
95 
97 
98 /*
99  * Initializes the specified 'Match' data structure and the initial state of
100  * commands.c for matching target windows of a command.
101  *
102  */
103 CFGFUN(criteria_init, int _state) {
104  criteria_next_state = _state;
105 
106  DLOG("Initializing criteria, current_match = %p, state = %d\n", current_match, _state);
109 }
110 
111 CFGFUN(criteria_pop_state) {
112  result->next_state = criteria_next_state;
113 }
114 
115 /*
116  * Interprets a ctype=cvalue pair and adds it to the current match
117  * specification.
118  *
119  */
120 CFGFUN(criteria_add, const char *ctype, const char *cvalue) {
121  match_parse_property(current_match, ctype, cvalue);
122 }
123 
124 /*******************************************************************************
125  * Utility functions
126  ******************************************************************************/
127 
128 /*
129  * A utility function to convert a string containing the group and modifiers to
130  * the corresponding bit mask.
131  */
133  /* It might be better to use strtok() here, but the simpler strstr() should
134  * do for now. */
135  i3_event_state_mask_t result = 0;
136  if (str == NULL)
137  return result;
138  if (strstr(str, "Mod1") != NULL)
139  result |= XCB_KEY_BUT_MASK_MOD_1;
140  if (strstr(str, "Mod2") != NULL)
141  result |= XCB_KEY_BUT_MASK_MOD_2;
142  if (strstr(str, "Mod3") != NULL)
143  result |= XCB_KEY_BUT_MASK_MOD_3;
144  if (strstr(str, "Mod4") != NULL)
145  result |= XCB_KEY_BUT_MASK_MOD_4;
146  if (strstr(str, "Mod5") != NULL)
147  result |= XCB_KEY_BUT_MASK_MOD_5;
148  if (strstr(str, "Control") != NULL ||
149  strstr(str, "Ctrl") != NULL)
150  result |= XCB_KEY_BUT_MASK_CONTROL;
151  if (strstr(str, "Shift") != NULL)
152  result |= XCB_KEY_BUT_MASK_SHIFT;
153 
154  if (strstr(str, "Group1") != NULL)
155  result |= (I3_XKB_GROUP_MASK_1 << 16);
156  if (strstr(str, "Group2") != NULL ||
157  strstr(str, "Mode_switch") != NULL)
158  result |= (I3_XKB_GROUP_MASK_2 << 16);
159  if (strstr(str, "Group3") != NULL)
160  result |= (I3_XKB_GROUP_MASK_3 << 16);
161  if (strstr(str, "Group4") != NULL)
162  result |= (I3_XKB_GROUP_MASK_4 << 16);
163  return result;
164 }
165 
166 CFGFUN(font, const char *font) {
167  config.font = load_font(font, true);
168  set_font(&config.font);
169 }
170 
171 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) {
172  configure_binding(bindtype, modifiers, key, release, border, whole_window, exclude_titlebar, command, DEFAULT_BINDING_MODE, false);
173 }
174 
175 /*******************************************************************************
176  * Mode handling
177  ******************************************************************************/
178 
179 static char *current_mode;
181 
182 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) {
183  if (current_mode == NULL) {
184  /* When using an invalid mode name, e.g. “default” */
185  return;
186  }
187 
188  configure_binding(bindtype, modifiers, key, release, border, whole_window, exclude_titlebar, command, current_mode, current_mode_pango_markup);
189 }
190 
191 CFGFUN(enter_mode, const char *pango_markup, const char *modename) {
192  if (strcmp(modename, DEFAULT_BINDING_MODE) == 0) {
193  ELOG("You cannot use the name %s for your mode\n", DEFAULT_BINDING_MODE);
194  return;
195  }
196 
197  struct Mode *mode;
198  SLIST_FOREACH (mode, &modes, modes) {
199  if (strcmp(mode->name, modename) == 0) {
200  ELOG("The binding mode with name \"%s\" is defined at least twice.\n", modename);
201  }
202  }
203 
204  DLOG("\t now in mode %s\n", modename);
206  current_mode = sstrdup(modename);
208 }
209 
210 CFGFUN(exec, const char *exectype, const char *no_startup_id, const char *command) {
211  struct Autostart *new = smalloc(sizeof(struct Autostart));
212  new->command = sstrdup(command);
213  new->no_startup_id = (no_startup_id != NULL);
214  if (strcmp(exectype, "exec") == 0) {
216  } else {
218  }
219 }
220 
221 CFGFUN(for_window, const char *command) {
223  ELOG("Match is empty, ignoring this for_window statement\n");
224  return;
225  }
226  DLOG("\t should execute command %s for the criteria mentioned above\n", command);
227  Assignment *assignment = scalloc(1, sizeof(Assignment));
228  assignment->type = A_COMMAND;
229  match_copy(&(assignment->match), current_match);
230  assignment->dest.command = sstrdup(command);
232 }
233 
234 CFGFUN(floating_minimum_size, const long width, const long height) {
237 }
238 
239 CFGFUN(floating_maximum_size, const long width, const long height) {
242 }
243 
244 CFGFUN(floating_modifier, const char *modifiers) {
246 }
247 
248 CFGFUN(default_orientation, const char *orientation) {
249  if (strcmp(orientation, "horizontal") == 0)
251  else if (strcmp(orientation, "vertical") == 0)
253  else
255 }
256 
257 CFGFUN(workspace_layout, const char *layout) {
258  if (strcmp(layout, "default") == 0)
260  else if (strcmp(layout, "stacking") == 0 ||
261  strcmp(layout, "stacked") == 0)
263  else
265 }
266 
267 CFGFUN(default_border, const char *windowtype, const char *border, const long width) {
268  int border_style;
269  int border_width;
270 
271  if (strcmp(border, "1pixel") == 0) {
272  border_style = BS_PIXEL;
273  border_width = 1;
274  } else if (strcmp(border, "none") == 0) {
275  border_style = BS_NONE;
276  border_width = 0;
277  } else if (strcmp(border, "pixel") == 0) {
278  border_style = BS_PIXEL;
279  border_width = width;
280  } else {
281  border_style = BS_NORMAL;
282  border_width = width;
283  }
284 
285  if ((strcmp(windowtype, "default_border") == 0) ||
286  (strcmp(windowtype, "new_window") == 0)) {
287  DLOG("default tiled border style = %d and border width = %d (%d physical px)\n",
288  border_style, border_width, logical_px(border_width));
289  config.default_border = border_style;
290  config.default_border_width = logical_px(border_width);
291  } else {
292  DLOG("default floating border style = %d and border width = %d (%d physical px)\n",
293  border_style, border_width, logical_px(border_width));
294  config.default_floating_border = border_style;
296  }
297 }
298 
299 CFGFUN(hide_edge_borders, const char *borders) {
300  if (strcmp(borders, "smart") == 0)
302  else if (strcmp(borders, "vertical") == 0)
304  else if (strcmp(borders, "horizontal") == 0)
306  else if (strcmp(borders, "both") == 0)
308  else if (strcmp(borders, "none") == 0)
310  else if (boolstr(borders))
312  else
314 }
315 
316 CFGFUN(focus_follows_mouse, const char *value) {
318 }
319 
320 CFGFUN(mouse_warping, const char *value) {
321  if (strcmp(value, "none") == 0)
323  else if (strcmp(value, "output") == 0)
325 }
326 
327 CFGFUN(force_xinerama, const char *value) {
328  config.force_xinerama = boolstr(value);
329 }
330 
331 CFGFUN(disable_randr15, const char *value) {
332  config.disable_randr15 = boolstr(value);
333 }
334 
335 CFGFUN(focus_wrapping, const char *value) {
336  if (strcmp(value, "force") == 0) {
338  } else if (strcmp(value, "workspace") == 0) {
340  } else if (boolstr(value)) {
342  } else {
344  }
345 }
346 
347 CFGFUN(force_focus_wrapping, const char *value) {
348  /* Legacy syntax. */
349  if (boolstr(value)) {
351  } else {
352  /* For "force_focus_wrapping off", don't enable or disable
353  * focus wrapping, just ensure it's not forced. */
356  }
357  }
358 }
359 
360 CFGFUN(workspace_back_and_forth, const char *value) {
362 }
363 
364 CFGFUN(fake_outputs, const char *outputs) {
365  free(config.fake_outputs);
367 }
368 
369 CFGFUN(force_display_urgency_hint, const long duration_ms) {
370  config.workspace_urgency_timer = duration_ms / 1000.0;
371 }
372 
373 CFGFUN(focus_on_window_activation, const char *mode) {
374  if (strcmp(mode, "smart") == 0)
375  config.focus_on_window_activation = FOWA_SMART;
376  else if (strcmp(mode, "urgent") == 0)
377  config.focus_on_window_activation = FOWA_URGENT;
378  else if (strcmp(mode, "focus") == 0)
379  config.focus_on_window_activation = FOWA_FOCUS;
380  else if (strcmp(mode, "none") == 0)
382  else {
383  ELOG("Unknown focus_on_window_activation mode \"%s\", ignoring it.\n", mode);
384  return;
385  }
386 
387  DLOG("Set new focus_on_window_activation mode = %i.\n", config.focus_on_window_activation);
388 }
389 
390 CFGFUN(title_align, const char *alignment) {
391  if (strcmp(alignment, "left") == 0) {
392  config.title_align = ALIGN_LEFT;
393  } else if (strcmp(alignment, "center") == 0) {
394  config.title_align = ALIGN_CENTER;
395  } else if (strcmp(alignment, "right") == 0) {
396  config.title_align = ALIGN_RIGHT;
397  } else {
398  assert(false);
399  }
400 }
401 
402 CFGFUN(show_marks, const char *value) {
403  config.show_marks = boolstr(value);
404 }
405 
406 static char *current_workspace = NULL;
407 
408 CFGFUN(workspace, const char *workspace, const char *output) {
409  struct Workspace_Assignment *assignment;
410 
411  /* When a new workspace line is encountered, for the first output word,
412  * $workspace from the config.spec is non-NULL. Afterwards, the parser calls
413  * clear_stack() because of the call line. Thus, we have to preserve the
414  * workspace string. */
415  if (workspace) {
417 
419  if (strcasecmp(assignment->name, workspace) == 0) {
420  ELOG("You have a duplicate workspace assignment for workspace \"%s\"\n",
421  workspace);
422  return;
423  }
424  }
425 
426  current_workspace = sstrdup(workspace);
427  } else {
428  if (!current_workspace) {
429  DLOG("Both workspace and current_workspace are NULL, assuming we had an error before\n");
430  return;
431  }
432  workspace = current_workspace;
433  }
434 
435  DLOG("Assigning workspace \"%s\" to output \"%s\"\n", workspace, output);
436 
437  assignment = scalloc(1, sizeof(struct Workspace_Assignment));
438  assignment->name = sstrdup(workspace);
439  assignment->output = sstrdup(output);
441 }
442 
443 CFGFUN(ipc_socket, const char *path) {
444  free(config.ipc_socket_path);
446 }
447 
448 CFGFUN(restart_state, const char *path) {
451 }
452 
453 CFGFUN(popup_during_fullscreen, const char *value) {
454  if (strcmp(value, "ignore") == 0) {
455  config.popup_during_fullscreen = PDF_IGNORE;
456  } else if (strcmp(value, "leave_fullscreen") == 0) {
457  config.popup_during_fullscreen = PDF_LEAVE_FULLSCREEN;
458  } else {
459  config.popup_during_fullscreen = PDF_SMART;
460  }
461 }
462 
463 CFGFUN(color_single, const char *colorclass, const char *color) {
464  /* used for client.background only currently */
466 }
467 
468 CFGFUN(color, const char *colorclass, const char *qubelabel, const char *border, const char *background, const char *text, const char *indicator, const char *child_border) {
469 #define APPLY_COLORS(classname, label) \
470  do { \
471  if (strcmp(colorclass, "client." #classname) == 0) { \
472  if (strcmp("focused_tab_title", #classname) == 0) { \
473  config.client[label].got_focused_tab_title = true; \
474  if (indicator || child_border) { \
475  ELOG("indicator and child_border colors have no effect for client.focused_tab_title\n"); \
476  } \
477  } \
478  config.client[label].classname.border = draw_util_hex_to_color(border); \
479  config.client[label].classname.background = draw_util_hex_to_color(background); \
480  config.client[label].classname.text = draw_util_hex_to_color(text); \
481  if (indicator != NULL) { \
482  config.client[label].classname.indicator = draw_util_hex_to_color(indicator); \
483  } \
484  if (child_border != NULL) { \
485  config.client[label].classname.child_border = draw_util_hex_to_color(child_border); \
486  } else { \
487  config.client[label].classname.child_border = config.client[label].classname.background; \
488  } \
489  return; \
490  } \
491  } while (0)
492 
493  int valid_color = 1;
494  qube_label_t label = QUBE_DOM0;
495  if (strcmp(qubelabel, "dom0") == 0) {
496  label = QUBE_DOM0;
497  } else if (strcmp(qubelabel, "red") == 0) {
498  label = QUBE_RED;
499  } else if (strcmp(qubelabel, "orange") == 0) {
500  label = QUBE_ORANGE;
501  } else if (strcmp(qubelabel, "yellow") == 0) {
502  label = QUBE_YELLOW;
503  } else if (strcmp(qubelabel, "green") == 0) {
504  label = QUBE_GREEN;
505  } else if (strcmp(qubelabel, "gray") == 0) {
506  label = QUBE_GRAY;
507  } else if (strcmp(qubelabel, "blue") == 0) {
508  label = QUBE_BLUE;
509  } else if (strcmp(qubelabel, "purple") == 0) {
510  label = QUBE_PURPLE;
511  } else if (strcmp(qubelabel, "black") == 0) {
512  label = QUBE_BLACK;
513  } else {
514  valid_color = 0;
515  }
516 
517  if (valid_color) {
518  APPLY_COLORS(focused_inactive, label);
519  APPLY_COLORS(focused, label);
520  APPLY_COLORS(unfocused, label);
521  APPLY_COLORS(urgent, label);
522  }
523 
524 
525 #undef APPLY_COLORS
526 }
527 
528 CFGFUN(assign_output, const char *output) {
530  ELOG("Match is empty, ignoring this assignment\n");
531  return;
532  }
533 
534  if (current_match->window_mode != WM_ANY) {
535  ELOG("Assignments using window mode (floating/tiling) is not supported\n");
536  return;
537  }
538 
539  DLOG("New assignment, using above criteria, to output \"%s\".\n", output);
540  Assignment *assignment = scalloc(1, sizeof(Assignment));
541  match_copy(&(assignment->match), current_match);
542  assignment->type = A_TO_OUTPUT;
543  assignment->dest.output = sstrdup(output);
545 }
546 
547 CFGFUN(assign, const char *workspace, bool is_number) {
549  ELOG("Match is empty, ignoring this assignment\n");
550  return;
551  }
552 
553  if (current_match->window_mode != WM_ANY) {
554  ELOG("Assignments using window mode (floating/tiling) is not supported\n");
555  return;
556  }
557 
558  if (is_number && ws_name_to_number(workspace) == -1) {
559  ELOG("Could not parse initial part of \"%s\" as a number.\n", workspace);
560  return;
561  }
562 
563  DLOG("New assignment, using above criteria, to workspace \"%s\".\n", workspace);
564  Assignment *assignment = scalloc(1, sizeof(Assignment));
565  match_copy(&(assignment->match), current_match);
566  assignment->type = is_number ? A_TO_WORKSPACE_NUMBER : A_TO_WORKSPACE;
567  assignment->dest.workspace = sstrdup(workspace);
569 }
570 
571 CFGFUN(no_focus) {
573  ELOG("Match is empty, ignoring this assignment\n");
574  return;
575  }
576 
577  DLOG("New assignment, using above criteria, to ignore focus on manage.\n");
578  Assignment *assignment = scalloc(1, sizeof(Assignment));
579  match_copy(&(assignment->match), current_match);
580  assignment->type = A_NO_FOCUS;
582 }
583 
584 CFGFUN(ipc_kill_timeout, const long timeout_ms) {
585  ipc_set_kill_timeout(timeout_ms / 1000.0);
586 }
587 
588 /*******************************************************************************
589  * Bar configuration (i3bar)
590  ******************************************************************************/
591 
593 
594 CFGFUN(bar_font, const char *font) {
596  current_bar->font = sstrdup(font);
597 }
598 
599 CFGFUN(bar_separator_symbol, const char *separator) {
601  current_bar->separator_symbol = sstrdup(separator);
602 }
603 
604 CFGFUN(bar_mode, const char *mode) {
605  current_bar->mode = (strcmp(mode, "dock") == 0 ? M_DOCK : (strcmp(mode, "hide") == 0 ? M_HIDE : M_INVISIBLE));
606 }
607 
608 CFGFUN(bar_hidden_state, const char *hidden_state) {
609  current_bar->hidden_state = (strcmp(hidden_state, "hide") == 0 ? S_HIDE : S_SHOW);
610 }
611 
612 CFGFUN(bar_id, const char *bar_id) {
613  current_bar->id = sstrdup(bar_id);
614 }
615 
616 CFGFUN(bar_output, const char *output) {
617  int new_outputs = current_bar->num_outputs + 1;
618  current_bar->outputs = srealloc(current_bar->outputs, sizeof(char *) * new_outputs);
620  current_bar->num_outputs = new_outputs;
621 }
622 
623 CFGFUN(bar_verbose, const char *verbose) {
625 }
626 
627 CFGFUN(bar_modifier, const char *modifiers) {
628  current_bar->modifier = modifiers ? event_state_from_str(modifiers) : XCB_NONE;
629 }
630 
631 static void bar_configure_binding(const char *button, const char *release, const char *command) {
632  if (strncasecmp(button, "button", strlen("button")) != 0) {
633  ELOG("Bindings for a bar can only be mouse bindings, not \"%s\", ignoring.\n", button);
634  return;
635  }
636 
637  int input_code = atoi(button + strlen("button"));
638  if (input_code < 1) {
639  ELOG("Button \"%s\" does not seem to be in format 'buttonX'.\n", button);
640  return;
641  }
642  const bool release_bool = release != NULL;
643 
644  struct Barbinding *current;
645  TAILQ_FOREACH (current, &(current_bar->bar_bindings), bindings) {
646  if (current->input_code == input_code && current->release == release_bool) {
647  ELOG("command for button %s was already specified, ignoring.\n", button);
648  return;
649  }
650  }
651 
652  struct Barbinding *new_binding = scalloc(1, sizeof(struct Barbinding));
653  new_binding->release = release_bool;
654  new_binding->input_code = input_code;
655  new_binding->command = sstrdup(command);
656  TAILQ_INSERT_TAIL(&(current_bar->bar_bindings), new_binding, bindings);
657 }
658 
659 CFGFUN(bar_wheel_up_cmd, const char *command) {
660  ELOG("'wheel_up_cmd' is deprecated. Please us 'bindsym button4 %s' instead.\n", command);
661  bar_configure_binding("button4", NULL, command);
662 }
663 
664 CFGFUN(bar_wheel_down_cmd, const char *command) {
665  ELOG("'wheel_down_cmd' is deprecated. Please us 'bindsym button5 %s' instead.\n", command);
666  bar_configure_binding("button5", NULL, command);
667 }
668 
669 CFGFUN(bar_bindsym, const char *button, const char *release, const char *command) {
671 }
672 
673 CFGFUN(bar_position, const char *position) {
674  current_bar->position = (strcmp(position, "top") == 0 ? P_TOP : P_BOTTOM);
675 }
676 
677 CFGFUN(bar_i3bar_command, const char *i3bar_command) {
679  current_bar->i3bar_command = sstrdup(i3bar_command);
680 }
681 
682 CFGFUN(bar_color, const char *colorclass, const char *border, const char *background, const char *text) {
683 #define APPLY_COLORS(classname) \
684  do { \
685  if (strcmp(colorclass, #classname) == 0) { \
686  if (text != NULL) { \
687  /* New syntax: border, background, text */ \
688  current_bar->colors.classname##_border = sstrdup(border); \
689  current_bar->colors.classname##_bg = sstrdup(background); \
690  current_bar->colors.classname##_text = sstrdup(text); \
691  } else { \
692  /* Old syntax: text, background */ \
693  current_bar->colors.classname##_bg = sstrdup(background); \
694  current_bar->colors.classname##_text = sstrdup(border); \
695  } \
696  } \
697  } while (0)
698 
699  APPLY_COLORS(focused_workspace);
700  APPLY_COLORS(active_workspace);
701  APPLY_COLORS(inactive_workspace);
702  APPLY_COLORS(urgent_workspace);
703  APPLY_COLORS(binding_mode);
704 
705 #undef APPLY_COLORS
706 }
707 
708 CFGFUN(bar_socket_path, const char *socket_path) {
710  current_bar->socket_path = sstrdup(socket_path);
711 }
712 
713 CFGFUN(bar_tray_output, const char *output) {
714  struct tray_output_t *tray_output = scalloc(1, sizeof(struct tray_output_t));
715  tray_output->output = sstrdup(output);
716  TAILQ_INSERT_TAIL(&(current_bar->tray_outputs), tray_output, tray_outputs);
717 }
718 
719 CFGFUN(bar_tray_padding, const long padding_px) {
720  current_bar->tray_padding = padding_px;
721 }
722 
723 CFGFUN(bar_color_single, const char *colorclass, const char *color) {
724  if (strcmp(colorclass, "background") == 0)
726  else if (strcmp(colorclass, "separator") == 0)
728  else if (strcmp(colorclass, "statusline") == 0)
730  else if (strcmp(colorclass, "focused_background") == 0)
732  else if (strcmp(colorclass, "focused_separator") == 0)
734  else
736 }
737 
738 CFGFUN(bar_status_command, const char *command) {
740  current_bar->status_command = sstrdup(command);
741 }
742 
743 CFGFUN(bar_binding_mode_indicator, const char *value) {
745 }
746 
747 CFGFUN(bar_workspace_buttons, const char *value) {
749 }
750 
751 CFGFUN(bar_workspace_min_width, const long width) {
753 }
754 
755 CFGFUN(bar_strip_workspace_numbers, const char *value) {
757 }
758 
759 CFGFUN(bar_strip_workspace_name, const char *value) {
761 }
762 
763 CFGFUN(bar_start) {
764  current_bar = scalloc(1, sizeof(struct Barconfig));
765  TAILQ_INIT(&(current_bar->bar_bindings));
766  TAILQ_INIT(&(current_bar->tray_outputs));
768  current_bar->modifier = XCB_KEY_BUT_MASK_MOD_4;
769 }
770 
771 CFGFUN(bar_finish) {
772  DLOG("\t new bar configuration finished, saving.\n");
773  /* Generate a unique ID for this bar if not already configured */
774  if (current_bar->id == NULL)
776 
778 
780  /* Simply reset the pointer, but don't free the resources. */
781  current_bar = NULL;
782 }
const char * DEFAULT_BINDING_MODE
The name of the default mode.
Definition: bindings.c:25
Binding * configure_binding(const char *bindtype, const char *modifiers, const char *input_code, const char *release, const char *border, const char *whole_window, const char *exclude_titlebar, const char *command, const char *modename, bool pango_markup)
Adds a binding from config parameters given as strings and returns a pointer to the binding structure...
Definition: bindings.c:59
static struct stack stack
static Match current_match
struct includedfiles_head included_files
Definition: config.c:22
Config config
Definition: config.c:19
struct barconfig_head barconfigs
Definition: config.c:21
struct modes_head modes
Definition: config.c:20
#define APPLY_COLORS(classname, label)
static bool current_mode_pango_markup
static void bar_configure_binding(const char *button, const char *release, const char *command)
static char * current_workspace
static int criteria_next_state
CFGFUN(include, const char *pattern)
static Barconfig * current_bar
static char * current_mode
i3_event_state_mask_t event_state_from_str(const char *str)
A utility function to convert a string containing the group and modifiers to the corresponding bit ma...
parse_file_result_t parse_file(struct parser_ctx *ctx, const char *f, IncludedFile *included_file)
Parses the given file by first replacing the variables, then calling parse_config and launching i3-na...
static bool verbose
Definition: log.c:36
bool force_xinerama
Definition: main.c:107
struct autostarts_always_head autostarts_always
Definition: main.c:94
struct autostarts_head autostarts
Definition: main.c:91
struct assignments_head assignments
Definition: main.c:97
struct ws_assignments_head ws_assignments
Definition: main.c:101
struct bindings_head * bindings
Definition: main.c:87
bool match_is_empty(Match *match)
Check if a match is empty.
Definition: match.c:39
void match_init(Match *match)
Initializes the Match data structure.
Definition: match.c:26
void match_copy(Match *dest, Match *src)
Copies the data of a match from src to dest.
Definition: match.c:64
void match_free(Match *match)
Frees the given match.
Definition: match.c:275
void match_parse_property(Match *match, const char *ctype, const char *cvalue)
Interprets a ctype=cvalue pair and adds it to the given match specification.
Definition: match.c:291
struct outputs_head outputs
Definition: randr.c:22
struct Con * focused
Definition: tree.c:13
int ws_name_to_number(const char *name)
Parses the workspace name as a number.
Definition: util.c:109
void workspace_back_and_forth(void)
Focuses the previously focused workspace.
Definition: workspace.c:801
static xcb_cursor_context_t * ctx
Definition: xcursor.c:19
@ PARSE_FILE_CONFIG_ERRORS
Definition: config_parser.h:95
@ PARSE_FILE_SUCCESS
Definition: config_parser.h:94
@ PARSE_FILE_FAILED
Definition: config_parser.h:93
@ HEBM_VERTICAL
Definition: data.h:82
@ HEBM_HORIZONTAL
Definition: data.h:83
@ HEBM_BOTH
Definition: data.h:84
@ HEBM_SMART
Definition: data.h:85
@ HEBM_NONE
Definition: data.h:81
@ I3_XKB_GROUP_MASK_2
Definition: data.h:117
@ I3_XKB_GROUP_MASK_3
Definition: data.h:118
@ I3_XKB_GROUP_MASK_4
Definition: data.h:119
@ I3_XKB_GROUP_MASK_1
Definition: data.h:116
uint32_t i3_event_state_mask_t
The lower 16 bits contain a xcb_key_but_mask_t, the higher 16 bits contain an i3_xkb_group_mask_t.
Definition: data.h:128
@ POINTER_WARPING_OUTPUT
Definition: data.h:134
@ POINTER_WARPING_NONE
Definition: data.h:135
@ L_STACKED
Definition: data.h:95
@ L_TABBED
Definition: data.h:96
@ L_DEFAULT
Definition: data.h:94
@ FOCUS_WRAPPING_OFF
Definition: data.h:142
@ FOCUS_WRAPPING_ON
Definition: data.h:143
@ FOCUS_WRAPPING_FORCE
Definition: data.h:144
@ FOCUS_WRAPPING_WORKSPACE
Definition: data.h:145
@ VERT
Definition: data.h:61
@ HORIZ
Definition: data.h:60
@ NO_ORIENTATION
Definition: data.h:59
@ BS_NONE
Definition: data.h:65
@ BS_PIXEL
Definition: data.h:66
@ BS_NORMAL
Definition: data.h:64
qube_label_t
Qubes colors.
Definition: data.h:151
@ QUBE_ORANGE
Definition: data.h:154
@ QUBE_DOM0
Definition: data.h:152
@ QUBE_BLUE
Definition: data.h:158
@ QUBE_YELLOW
Definition: data.h:155
@ QUBE_GRAY
Definition: data.h:157
@ QUBE_GREEN
Definition: data.h:156
@ QUBE_RED
Definition: data.h:153
@ QUBE_PURPLE
Definition: data.h:159
@ QUBE_BLACK
Definition: data.h:160
void ipc_set_kill_timeout(ev_tstamp new)
Set the maximum duration that we allow for a connection with an unwriteable socket.
char * sstrdup(const char *str)
Safe-wrapper around strdup which exits if malloc returns NULL (meaning that there is no more memory a...
int logical_px(const int logical)
Convert a logical amount of pixels (e.g.
#define DLOG(fmt,...)
Definition: libi3.h:105
#define LOG(fmt,...)
Definition: libi3.h:95
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
#define ELOG(fmt,...)
Definition: libi3.h:100
color_t draw_util_hex_to_color(const char *color)
Parses the given color in hex format to an internal color representation.
int sasprintf(char **strp, const char *fmt,...)
Safe-wrapper around asprintf which exits if it returns -1 (meaning that there is no more memory avail...
void * srealloc(void *ptr, size_t size)
Safe-wrapper around realloc which exits if realloc returns NULL (meaning that there is no more memory...
bool boolstr(const char *str)
Reports whether str represents the enabled state (1, yes, true, …).
void set_font(i3Font *font)
Defines the font to be used for the forthcoming calls.
i3Font load_font(const char *pattern, const bool fallback)
Loads a font for usage, also getting its height.
void * scalloc(size_t num, size_t size)
Safe-wrapper around calloc which exits if malloc returns NULL (meaning that there is no more memory a...
#define SLIST_FOREACH(var, head, field)
Definition: queue.h:114
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:347
#define TAILQ_INIT(head)
Definition: queue.h:360
#define TAILQ_INSERT_TAIL(head, elm, field)
Definition: queue.h:376
#define TAILQ_REMOVE(head, elm, field)
Definition: queue.h:402
#define FREE(pointer)
Definition: util.h:47
List entry struct for an included file.
Definition: configuration.h:78
char * variable_replaced_contents
Definition: configuration.h:81
char * raw_contents
Definition: configuration.h:80
The configuration file can contain multiple sets of bindings.
Definition: configuration.h:92
char * name
Definition: configuration.h:93
bool pango_markup
Definition: configuration.h:94
enum Config::@6 popup_during_fullscreen
What should happen when a new popup is opened during fullscreen mode.
focus_wrapping_t focus_wrapping
When focus wrapping is enabled (the default), attempting to move focus past the edge of the screen (i...
char * restart_state_path
bool workspace_auto_back_and_forth
Automatic workspace back and forth switching.
int32_t floating_minimum_width
enum Config::@5 title_align
Title alignment options.
int default_border_width
i3Font font
hide_edge_borders_mode_t hide_edge_borders
Remove borders if they are adjacent to the screen edge.
int32_t floating_minimum_height
bool disable_focus_follows_mouse
By default, focus follows mouse.
warping_t mouse_warping
By default, when switching focus to a window on a different output (e.g.
char * fake_outputs
Overwrites output detection (for testing), see src/fake_outputs.c.
int default_floating_border_width
int default_orientation
Default orientation for new containers.
uint32_t floating_modifier
The modifier which needs to be pressed in combination with your mouse buttons to do things with float...
char * ipc_socket_path
bool show_marks
Specifies whether or not marks should be displayed in the window decoration.
float workspace_urgency_timer
By default, urgency is cleared immediately when switching to another workspace leads to focusing the ...
bool disable_randr15
Don’t use RandR 1.5 for querying outputs.
enum Config::@4 focus_on_window_activation
Behavior when a window sends a NET_ACTIVE_WINDOW message.
int32_t floating_maximum_width
Maximum and minimum dimensions of a floating window.
bool force_xinerama
By default, use the RandR API for multi-monitor setups.
int32_t floating_maximum_height
border_style_t default_border
The default border style for new windows.
layout_t default_layout
struct Config::config_client client[QUBE_NUM_LABELS]
border_style_t default_floating_border
The default border style for new floating windows.
int number_barconfigs
Holds the status bar configuration (i3bar).
bool hide_workspace_buttons
Hide workspace buttons? Configuration option is 'workspace_buttons no' but we invert the bool to get ...
char * separator_symbol
A custom separator to use instead of a vertical line.
int workspace_min_width
The minimal width for workspace buttons.
struct Barconfig::bar_colors colors
uint32_t modifier
Bar modifier (to show bar when in hide mode).
char * i3bar_command
Command that should be run to execute i3bar, give a full path if i3bar is not in your $PATH.
int num_outputs
Number of outputs in the outputs array.
enum Barconfig::@8 hidden_state
char * font
Font specification for all text rendered on the bar.
char * id
Automatically generated ID for this bar config.
enum Barconfig::@7 mode
Bar display mode (hide unless modifier is pressed or show in dock mode or always hide in invisible mo...
bool hide_binding_mode_indicator
Hide mode button? Configuration option is 'binding_mode_indicator no' but we invert the bool for the ...
char * status_command
Command that should be run to get a statusline, for example 'i3status'.
bool strip_workspace_numbers
Strip workspace numbers? Configuration option is 'strip_workspace_numbers yes'.
bool strip_workspace_name
Strip workspace name? Configuration option is 'strip_workspace_name yes'.
int tray_padding
char ** outputs
Outputs on which this bar should show up on.
enum Barconfig::@9 position
Bar position (bottom by default).
char * socket_path
Path to the i3 IPC socket.
bool verbose
Enable verbose mode? Useful for debugging purposes.
Defines a mouse command to be executed instead of the default behavior when clicking on the non-statu...
bool release
If true, the command will be executed after the button is released.
int input_code
The button to be used (e.g., 1 for "button1").
char * command
The command which is to be executed for this button.
Stores which workspace (by name or number) goes to which output.
Definition: data.h:226
Holds a command specified by either an:
Definition: data.h:358
bool no_startup_id
no_startup_id flag for start_application().
Definition: data.h:363
char * command
Command, like in command mode.
Definition: data.h:360
enum Match::@14 window_mode
An Assignment makes specific windows go to a specific workspace/output or run a command for that wind...
Definition: data.h:589
Match match
the criteria to check if a window matches
Definition: data.h:611
union Assignment::@17 dest
destination workspace/command/output, depending on the type
char * output
Definition: data.h:617
char * command
Definition: data.h:615
char * workspace
Definition: data.h:616
enum Assignment::@16 type
type of this assignment: