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 /*******************************************************************************
13  * Criteria functions.
14  ******************************************************************************/
15 
17 
18 /*
19  * Initializes the specified 'Match' data structure and the initial state of
20  * commands.c for matching target windows of a command.
21  *
22  */
23 CFGFUN(criteria_init, int _state) {
24  criteria_next_state = _state;
25 
26  DLOG("Initializing criteria, current_match = %p, state = %d\n", current_match, _state);
29 }
30 
31 CFGFUN(criteria_pop_state) {
32  result->next_state = criteria_next_state;
33 }
34 
35 /*
36  * Interprets a ctype=cvalue pair and adds it to the current match
37  * specification.
38  *
39  */
40 CFGFUN(criteria_add, const char *ctype, const char *cvalue) {
41  match_parse_property(current_match, ctype, cvalue);
42 }
43 
44 /*******************************************************************************
45  * Utility functions
46  ******************************************************************************/
47 
48 static bool eval_boolstr(const char *str) {
49  return (strcasecmp(str, "1") == 0 ||
50  strcasecmp(str, "yes") == 0 ||
51  strcasecmp(str, "true") == 0 ||
52  strcasecmp(str, "on") == 0 ||
53  strcasecmp(str, "enable") == 0 ||
54  strcasecmp(str, "active") == 0);
55 }
56 
57 /*
58  * A utility function to convert a string containing the group and modifiers to
59  * the corresponding bit mask.
60  */
62  /* It might be better to use strtok() here, but the simpler strstr() should
63  * do for now. */
64  i3_event_state_mask_t result = 0;
65  if (str == NULL)
66  return result;
67  if (strstr(str, "Mod1") != NULL)
68  result |= XCB_KEY_BUT_MASK_MOD_1;
69  if (strstr(str, "Mod2") != NULL)
70  result |= XCB_KEY_BUT_MASK_MOD_2;
71  if (strstr(str, "Mod3") != NULL)
72  result |= XCB_KEY_BUT_MASK_MOD_3;
73  if (strstr(str, "Mod4") != NULL)
74  result |= XCB_KEY_BUT_MASK_MOD_4;
75  if (strstr(str, "Mod5") != NULL)
76  result |= XCB_KEY_BUT_MASK_MOD_5;
77  if (strstr(str, "Control") != NULL ||
78  strstr(str, "Ctrl") != NULL)
79  result |= XCB_KEY_BUT_MASK_CONTROL;
80  if (strstr(str, "Shift") != NULL)
81  result |= XCB_KEY_BUT_MASK_SHIFT;
82 
83  if (strstr(str, "Group1") != NULL)
84  result |= (I3_XKB_GROUP_MASK_1 << 16);
85  if (strstr(str, "Group2") != NULL ||
86  strstr(str, "Mode_switch") != NULL)
87  result |= (I3_XKB_GROUP_MASK_2 << 16);
88  if (strstr(str, "Group3") != NULL)
89  result |= (I3_XKB_GROUP_MASK_3 << 16);
90  if (strstr(str, "Group4") != NULL)
91  result |= (I3_XKB_GROUP_MASK_4 << 16);
92  return result;
93 }
94 
95 static char *font_pattern;
96 
97 CFGFUN(font, const char *font) {
98  config.font = load_font(font, true);
100 
101  /* Save the font pattern for using it as bar font later on */
103  font_pattern = sstrdup(font);
104 }
105 
106 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) {
107  configure_binding(bindtype, modifiers, key, release, border, whole_window, exclude_titlebar, command, DEFAULT_BINDING_MODE, false);
108 }
109 
110 /*******************************************************************************
111  * Mode handling
112  ******************************************************************************/
113 
114 static char *current_mode;
116 
117 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) {
118  configure_binding(bindtype, modifiers, key, release, border, whole_window, exclude_titlebar, command, current_mode, current_mode_pango_markup);
119 }
120 
121 CFGFUN(enter_mode, const char *pango_markup, const char *modename) {
122  if (strcmp(modename, DEFAULT_BINDING_MODE) == 0) {
123  ELOG("You cannot use the name %s for your mode\n", DEFAULT_BINDING_MODE);
124  return;
125  }
126 
127  struct Mode *mode;
128  SLIST_FOREACH (mode, &modes, modes) {
129  if (strcmp(mode->name, modename) == 0) {
130  ELOG("The binding mode with name \"%s\" is defined at least twice.\n", modename);
131  }
132  }
133 
134  DLOG("\t now in mode %s\n", modename);
136  current_mode = sstrdup(modename);
138 }
139 
140 CFGFUN(exec, const char *exectype, const char *no_startup_id, const char *command) {
141  struct Autostart *new = smalloc(sizeof(struct Autostart));
142  new->command = sstrdup(command);
143  new->no_startup_id = (no_startup_id != NULL);
144  if (strcmp(exectype, "exec") == 0) {
146  } else {
148  }
149 }
150 
151 CFGFUN(for_window, const char *command) {
153  ELOG("Match is empty, ignoring this for_window statement\n");
154  return;
155  }
156  DLOG("\t should execute command %s for the criteria mentioned above\n", command);
157  Assignment *assignment = scalloc(1, sizeof(Assignment));
158  assignment->type = A_COMMAND;
159  match_copy(&(assignment->match), current_match);
160  assignment->dest.command = sstrdup(command);
162 }
163 
164 static void create_gaps_assignment(const char *workspace, const char *scope, gaps_t gaps) {
165  DLOG("Setting gaps for workspace %s", workspace);
166 
167  struct Workspace_Assignment *assignment;
169  if (strcasecmp(assignment->name, workspace) == 0) {
170  if (!strcmp(scope, "inner")) {
171  assignment->gaps.inner = gaps.inner;
172  } else if (!strcmp(scope, "outer")) {
173  assignment->gaps.top = gaps.top;
174  assignment->gaps.right = gaps.right;
175  assignment->gaps.bottom = gaps.bottom;
176  assignment->gaps.left = gaps.left;
177  } else if (!strcmp(scope, "vertical")) {
178  assignment->gaps.top = gaps.top;
179  assignment->gaps.bottom = gaps.bottom;
180  } else if (!strcmp(scope, "horizontal")) {
181  assignment->gaps.right = gaps.right;
182  assignment->gaps.left = gaps.left;
183  } else if (!strcmp(scope, "top")) {
184  assignment->gaps.top = gaps.top;
185  } else if (!strcmp(scope, "right")) {
186  assignment->gaps.right = gaps.right;
187  } else if (!strcmp(scope, "bottom")) {
188  assignment->gaps.bottom = gaps.bottom;
189  } else if (!strcmp(scope, "left")) {
190  assignment->gaps.left = gaps.left;
191  } else {
192  ELOG("Invalid command, cannot process scope %s", scope);
193  }
194 
195  return;
196  }
197  }
198 
199  // Assignment does not yet exist, let's create it.
200  assignment = scalloc(1, sizeof(struct Workspace_Assignment));
201  assignment->name = sstrdup(workspace);
202  assignment->output = NULL;
203  if (!strcmp(scope, "inner")) {
204  assignment->gaps.inner = gaps.inner;
205  } else if (!strcmp(scope, "outer")) {
206  assignment->gaps.top = gaps.top;
207  assignment->gaps.right = gaps.right;
208  assignment->gaps.bottom = gaps.bottom;
209  assignment->gaps.left = gaps.left;
210  } else if (!strcmp(scope, "vertical")) {
211  assignment->gaps.top = gaps.top;
212  assignment->gaps.bottom = gaps.bottom;
213  } else if (!strcmp(scope, "horizontal")) {
214  assignment->gaps.right = gaps.right;
215  assignment->gaps.left = gaps.left;
216  } else if (!strcmp(scope, "top")) {
217  assignment->gaps.top = gaps.top;
218  } else if (!strcmp(scope, "right")) {
219  assignment->gaps.right = gaps.right;
220  } else if (!strcmp(scope, "bottom")) {
221  assignment->gaps.bottom = gaps.bottom;
222  } else if (!strcmp(scope, "left")) {
223  assignment->gaps.left = gaps.left;
224  } else {
225  ELOG("Invalid command, cannot process scope %s", scope);
226  }
228 }
229 
230 CFGFUN(gaps, const char *workspace, const char *scope, const long value) {
231  int pixels = logical_px(value);
232  gaps_t gaps = (gaps_t){0, 0, 0, 0, 0};
233  if (!strcmp(scope, "inner")) {
234  if (workspace == NULL)
235  config.gaps.inner = pixels;
236  else {
237  gaps.inner = pixels - config.gaps.inner;
238  create_gaps_assignment(workspace, scope, gaps);
239  }
240  } else if (!strcmp(scope, "outer")) {
241  if (workspace == NULL) {
242  config.gaps.top = pixels;
243  config.gaps.right = pixels;
244  config.gaps.bottom = pixels;
245  config.gaps.left = pixels;
246  } else {
247  gaps.top = pixels - config.gaps.top;
248  gaps.right = pixels - config.gaps.right;
249  gaps.bottom = pixels - config.gaps.bottom;
250  gaps.left = pixels - config.gaps.left;
251  create_gaps_assignment(workspace, scope, gaps);
252  }
253  } else if (!strcmp(scope, "vertical")) {
254  if (workspace == NULL) {
255  config.gaps.top = pixels;
256  config.gaps.bottom = pixels;
257  } else {
258  gaps.top = pixels - config.gaps.top;
259  gaps.bottom = pixels - config.gaps.bottom;
260  create_gaps_assignment(workspace, scope, gaps);
261  }
262  } else if (!strcmp(scope, "horizontal")) {
263  if (workspace == NULL) {
264  config.gaps.right = pixels;
265  config.gaps.left = pixels;
266  } else {
267  gaps.right = pixels - config.gaps.right;
268  gaps.left = pixels - config.gaps.left;
269  create_gaps_assignment(workspace, scope, gaps);
270  }
271  } else if (!strcmp(scope, "top")) {
272  if (workspace == NULL)
273  config.gaps.top = pixels;
274  else {
275  gaps.top = pixels - config.gaps.top;
276  create_gaps_assignment(workspace, scope, gaps);
277  }
278  } else if (!strcmp(scope, "right")) {
279  if (workspace == NULL)
280  config.gaps.right = pixels;
281  else {
282  gaps.right = pixels - config.gaps.right;
283  create_gaps_assignment(workspace, scope, gaps);
284  }
285  } else if (!strcmp(scope, "bottom")) {
286  if (workspace == NULL)
287  config.gaps.bottom = pixels;
288  else {
289  gaps.bottom = pixels - config.gaps.bottom;
290  create_gaps_assignment(workspace, scope, gaps);
291  }
292  } else if (!strcmp(scope, "left")) {
293  if (workspace == NULL)
294  config.gaps.left = pixels;
295  else {
296  gaps.left = pixels - config.gaps.left;
297  create_gaps_assignment(workspace, scope, gaps);
298  }
299  } else {
300  ELOG("Invalid command, cannot process scope %s", scope);
301  }
302 }
303 
304 CFGFUN(smart_borders, const char *enable) {
305  if (!strcmp(enable, "no_gaps"))
307  else
309 }
310 
311 CFGFUN(smart_gaps, const char *enable) {
312  if (!strcmp(enable, "inverse_outer"))
314  else
316 }
317 
318 CFGFUN(floating_minimum_size, const long width, const long height) {
321 }
322 
323 CFGFUN(floating_maximum_size, const long width, const long height) {
326 }
327 
328 CFGFUN(floating_modifier, const char *modifiers) {
330 }
331 
332 CFGFUN(default_orientation, const char *orientation) {
333  if (strcmp(orientation, "horizontal") == 0)
335  else if (strcmp(orientation, "vertical") == 0)
337  else
339 }
340 
341 CFGFUN(workspace_layout, const char *layout) {
342  if (strcmp(layout, "default") == 0)
344  else if (strcmp(layout, "stacking") == 0 ||
345  strcmp(layout, "stacked") == 0)
347  else
349 }
350 
351 CFGFUN(default_border, const char *windowtype, const char *border, const long width) {
352  int border_style;
353  int border_width;
354 
355  if (strcmp(border, "1pixel") == 0) {
356  border_style = BS_PIXEL;
357  border_width = 1;
358  } else if (strcmp(border, "none") == 0) {
359  border_style = BS_NONE;
360  border_width = 0;
361  } else if (strcmp(border, "pixel") == 0) {
362  border_style = BS_PIXEL;
363  border_width = width;
364  } else {
365  border_style = BS_NORMAL;
366  border_width = width;
367  }
368 
369  if ((strcmp(windowtype, "default_border") == 0) ||
370  (strcmp(windowtype, "new_window") == 0)) {
371  DLOG("default tiled border style = %d and border width = %d (%d physical px)\n",
372  border_style, border_width, logical_px(border_width));
373  config.default_border = border_style;
374  config.default_border_width = logical_px(border_width);
375  } else {
376  DLOG("default floating border style = %d and border width = %d (%d physical px)\n",
377  border_style, border_width, logical_px(border_width));
378  config.default_floating_border = border_style;
380  }
381 }
382 
383 CFGFUN(hide_edge_borders, const char *borders) {
384  if (strcmp(borders, "smart_no_gaps") == 0)
386  else if (strcmp(borders, "smart") == 0)
388  else if (strcmp(borders, "vertical") == 0)
390  else if (strcmp(borders, "horizontal") == 0)
392  else if (strcmp(borders, "both") == 0)
394  else if (strcmp(borders, "none") == 0)
396  else if (eval_boolstr(borders))
398  else
400 }
401 
402 CFGFUN(focus_follows_mouse, const char *value) {
404 }
405 
406 CFGFUN(mouse_warping, const char *value) {
407  if (strcmp(value, "none") == 0)
409  else if (strcmp(value, "output") == 0)
411 }
412 
413 CFGFUN(force_xinerama, const char *value) {
415 }
416 
417 CFGFUN(disable_randr15, const char *value) {
419 }
420 
421 CFGFUN(focus_wrapping, const char *value) {
422  if (strcmp(value, "force") == 0) {
424  } else if (strcmp(value, "workspace") == 0) {
426  } else if (eval_boolstr(value)) {
428  } else {
430  }
431 }
432 
433 CFGFUN(force_focus_wrapping, const char *value) {
434  /* Legacy syntax. */
435  if (eval_boolstr(value)) {
437  } else {
438  /* For "force_focus_wrapping off", don't enable or disable
439  * focus wrapping, just ensure it's not forced. */
442  }
443  }
444 }
445 
446 CFGFUN(workspace_back_and_forth, const char *value) {
448 }
449 
450 CFGFUN(fake_outputs, const char *outputs) {
451  free(config.fake_outputs);
453 }
454 
455 CFGFUN(force_display_urgency_hint, const long duration_ms) {
456  config.workspace_urgency_timer = duration_ms / 1000.0;
457 }
458 
459 CFGFUN(focus_on_window_activation, const char *mode) {
460  if (strcmp(mode, "smart") == 0)
461  config.focus_on_window_activation = FOWA_SMART;
462  else if (strcmp(mode, "urgent") == 0)
463  config.focus_on_window_activation = FOWA_URGENT;
464  else if (strcmp(mode, "focus") == 0)
465  config.focus_on_window_activation = FOWA_FOCUS;
466  else if (strcmp(mode, "none") == 0)
468  else {
469  ELOG("Unknown focus_on_window_activation mode \"%s\", ignoring it.\n", mode);
470  return;
471  }
472 
473  DLOG("Set new focus_on_window_activation mode = %i.\n", config.focus_on_window_activation);
474 }
475 
476 CFGFUN(title_align, const char *alignment) {
477  if (strcmp(alignment, "left") == 0) {
478  config.title_align = ALIGN_LEFT;
479  } else if (strcmp(alignment, "center") == 0) {
480  config.title_align = ALIGN_CENTER;
481  } else if (strcmp(alignment, "right") == 0) {
482  config.title_align = ALIGN_RIGHT;
483  } else {
484  assert(false);
485  }
486 }
487 
488 CFGFUN(show_marks, const char *value) {
489  config.show_marks = eval_boolstr(value);
490 }
491 
492 static char *current_workspace = NULL;
493 
494 CFGFUN(workspace, const char *workspace, const char *output) {
495  struct Workspace_Assignment *assignment;
496 
497  /* When a new workspace line is encountered, for the first output word,
498  * $workspace from the config.spec is non-NULL. Afterwards, the parser calls
499  * clear_stack() because of the call line. Thus, we have to preserve the
500  * workspace string. */
501  if (workspace) {
503 
505  if (strcasecmp(assignment->name, workspace) == 0) {
506  if (assignment->output != NULL) {
507  ELOG("You have a duplicate workspace assignment for workspace \"%s\"\n",
508  workspace);
509  return;
510  }
511  }
512  }
513 
514  current_workspace = sstrdup(workspace);
515  } else {
516  if (!current_workspace) {
517  DLOG("Both workspace and current_workspace are NULL, assuming we had an error before\n");
518  return;
519  }
520  workspace = current_workspace;
521  }
522 
523  DLOG("Assigning workspace \"%s\" to output \"%s\"\n", workspace, output);
524 
525  assignment = scalloc(1, sizeof(struct Workspace_Assignment));
526  assignment->name = sstrdup(workspace);
527  assignment->output = sstrdup(output);
529 }
530 
531 CFGFUN(ipc_socket, const char *path) {
532  free(config.ipc_socket_path);
534 }
535 
536 CFGFUN(restart_state, const char *path) {
539 }
540 
541 CFGFUN(popup_during_fullscreen, const char *value) {
542  if (strcmp(value, "ignore") == 0) {
543  config.popup_during_fullscreen = PDF_IGNORE;
544  } else if (strcmp(value, "leave_fullscreen") == 0) {
545  config.popup_during_fullscreen = PDF_LEAVE_FULLSCREEN;
546  } else {
547  config.popup_during_fullscreen = PDF_SMART;
548  }
549 }
550 
551 CFGFUN(color_single, const char *colorclass, const char *color) {
552  /* used for client.background only currently */
554 }
555 
556 CFGFUN(color, const char *colorclass, const char *border, const char *background, const char *text, const char *indicator, const char *child_border) {
557 #define APPLY_COLORS(classname) \
558  do { \
559  if (strcmp(colorclass, "client." #classname) == 0) { \
560  config.client.classname.border = draw_util_hex_to_color(border); \
561  config.client.classname.background = draw_util_hex_to_color(background); \
562  config.client.classname.text = draw_util_hex_to_color(text); \
563  if (indicator != NULL) { \
564  config.client.classname.indicator = draw_util_hex_to_color(indicator); \
565  } \
566  if (child_border != NULL) { \
567  config.client.classname.child_border = draw_util_hex_to_color(child_border); \
568  } else { \
569  config.client.classname.child_border = config.client.classname.background; \
570  } \
571  } \
572  } while (0)
573 
574  APPLY_COLORS(focused_inactive);
576  APPLY_COLORS(unfocused);
577  APPLY_COLORS(urgent);
578  APPLY_COLORS(placeholder);
579 
580 #undef APPLY_COLORS
581 }
582 
583 CFGFUN(assign_output, const char *output) {
585  ELOG("Match is empty, ignoring this assignment\n");
586  return;
587  }
588 
589  if (current_match->window_mode != WM_ANY) {
590  ELOG("Assignments using window mode (floating/tiling) is not supported\n");
591  return;
592  }
593 
594  DLOG("New assignment, using above criteria, to output \"%s\".\n", output);
595  Assignment *assignment = scalloc(1, sizeof(Assignment));
596  match_copy(&(assignment->match), current_match);
597  assignment->type = A_TO_OUTPUT;
598  assignment->dest.output = sstrdup(output);
600 }
601 
602 CFGFUN(assign, const char *workspace, bool is_number) {
604  ELOG("Match is empty, ignoring this assignment\n");
605  return;
606  }
607 
608  if (current_match->window_mode != WM_ANY) {
609  ELOG("Assignments using window mode (floating/tiling) is not supported\n");
610  return;
611  }
612 
613  if (is_number && ws_name_to_number(workspace) == -1) {
614  ELOG("Could not parse initial part of \"%s\" as a number.\n", workspace);
615  return;
616  }
617 
618  DLOG("New assignment, using above criteria, to workspace \"%s\".\n", workspace);
619  Assignment *assignment = scalloc(1, sizeof(Assignment));
620  match_copy(&(assignment->match), current_match);
621  assignment->type = is_number ? A_TO_WORKSPACE_NUMBER : A_TO_WORKSPACE;
622  assignment->dest.workspace = sstrdup(workspace);
624 }
625 
626 CFGFUN(no_focus) {
628  ELOG("Match is empty, ignoring this assignment\n");
629  return;
630  }
631 
632  DLOG("New assignment, using above criteria, to ignore focus on manage.\n");
633  Assignment *assignment = scalloc(1, sizeof(Assignment));
634  match_copy(&(assignment->match), current_match);
635  assignment->type = A_NO_FOCUS;
637 }
638 
639 CFGFUN(ipc_kill_timeout, const long timeout_ms) {
640  ipc_set_kill_timeout(timeout_ms / 1000.0);
641 }
642 
643 /*******************************************************************************
644  * Bar configuration (i3bar)
645  ******************************************************************************/
646 
648 
649 CFGFUN(bar_font, const char *font) {
651  current_bar->font = sstrdup(font);
652 }
653 
654 CFGFUN(bar_separator_symbol, const char *separator) {
656  current_bar->separator_symbol = sstrdup(separator);
657 }
658 
659 CFGFUN(bar_mode, const char *mode) {
660  current_bar->mode = (strcmp(mode, "dock") == 0 ? M_DOCK : (strcmp(mode, "hide") == 0 ? M_HIDE : M_INVISIBLE));
661 }
662 
663 CFGFUN(bar_hidden_state, const char *hidden_state) {
664  current_bar->hidden_state = (strcmp(hidden_state, "hide") == 0 ? S_HIDE : S_SHOW);
665 }
666 
667 CFGFUN(bar_id, const char *bar_id) {
668  current_bar->id = sstrdup(bar_id);
669 }
670 
671 CFGFUN(bar_output, const char *output) {
672  int new_outputs = current_bar->num_outputs + 1;
673  current_bar->outputs = srealloc(current_bar->outputs, sizeof(char *) * new_outputs);
675  current_bar->num_outputs = new_outputs;
676 }
677 
678 CFGFUN(bar_verbose, const char *verbose) {
680 }
681 
682 CFGFUN(bar_height, const long height) {
683  current_bar->bar_height = (uint32_t)height;
684 }
685 
686 CFGFUN(bar_modifier, const char *modifiers) {
687  current_bar->modifier = modifiers ? event_state_from_str(modifiers) : XCB_NONE;
688 }
689 
690 static void bar_configure_binding(const char *button, const char *release, const char *command) {
691  if (strncasecmp(button, "button", strlen("button")) != 0) {
692  ELOG("Bindings for a bar can only be mouse bindings, not \"%s\", ignoring.\n", button);
693  return;
694  }
695 
696  int input_code = atoi(button + strlen("button"));
697  if (input_code < 1) {
698  ELOG("Button \"%s\" does not seem to be in format 'buttonX'.\n", button);
699  return;
700  }
701  const bool release_bool = release != NULL;
702 
703  struct Barbinding *current;
704  TAILQ_FOREACH (current, &(current_bar->bar_bindings), bindings) {
705  if (current->input_code == input_code && current->release == release_bool) {
706  ELOG("command for button %s was already specified, ignoring.\n", button);
707  return;
708  }
709  }
710 
711  struct Barbinding *new_binding = scalloc(1, sizeof(struct Barbinding));
712  new_binding->release = release_bool;
713  new_binding->input_code = input_code;
714  new_binding->command = sstrdup(command);
715  TAILQ_INSERT_TAIL(&(current_bar->bar_bindings), new_binding, bindings);
716 }
717 
718 CFGFUN(bar_wheel_up_cmd, const char *command) {
719  ELOG("'wheel_up_cmd' is deprecated. Please us 'bindsym button4 %s' instead.\n", command);
720  bar_configure_binding("button4", NULL, command);
721 }
722 
723 CFGFUN(bar_wheel_down_cmd, const char *command) {
724  ELOG("'wheel_down_cmd' is deprecated. Please us 'bindsym button5 %s' instead.\n", command);
725  bar_configure_binding("button5", NULL, command);
726 }
727 
728 CFGFUN(bar_bindsym, const char *button, const char *release, const char *command) {
730 }
731 
732 CFGFUN(bar_position, const char *position) {
733  current_bar->position = (strcmp(position, "top") == 0 ? P_TOP : P_BOTTOM);
734 }
735 
736 CFGFUN(bar_i3bar_command, const char *i3bar_command) {
738  current_bar->i3bar_command = sstrdup(i3bar_command);
739 }
740 
741 CFGFUN(bar_color, const char *colorclass, const char *border, const char *background, const char *text) {
742 #define APPLY_COLORS(classname) \
743  do { \
744  if (strcmp(colorclass, #classname) == 0) { \
745  if (text != NULL) { \
746  /* New syntax: border, background, text */ \
747  current_bar->colors.classname##_border = sstrdup(border); \
748  current_bar->colors.classname##_bg = sstrdup(background); \
749  current_bar->colors.classname##_text = sstrdup(text); \
750  } else { \
751  /* Old syntax: text, background */ \
752  current_bar->colors.classname##_bg = sstrdup(background); \
753  current_bar->colors.classname##_text = sstrdup(border); \
754  } \
755  } \
756  } while (0)
757 
758  APPLY_COLORS(focused_workspace);
759  APPLY_COLORS(active_workspace);
760  APPLY_COLORS(inactive_workspace);
761  APPLY_COLORS(urgent_workspace);
762  APPLY_COLORS(binding_mode);
763 
764 #undef APPLY_COLORS
765 }
766 
767 CFGFUN(bar_socket_path, const char *socket_path) {
769  current_bar->socket_path = sstrdup(socket_path);
770 }
771 
772 CFGFUN(bar_tray_output, const char *output) {
773  struct tray_output_t *tray_output = scalloc(1, sizeof(struct tray_output_t));
774  tray_output->output = sstrdup(output);
775  TAILQ_INSERT_TAIL(&(current_bar->tray_outputs), tray_output, tray_outputs);
776 }
777 
778 CFGFUN(bar_tray_padding, const long padding_px) {
779  current_bar->tray_padding = padding_px;
780 }
781 
782 CFGFUN(bar_color_single, const char *colorclass, const char *color) {
783  if (strcmp(colorclass, "background") == 0)
785  else if (strcmp(colorclass, "separator") == 0)
787  else if (strcmp(colorclass, "statusline") == 0)
789  else if (strcmp(colorclass, "focused_background") == 0)
791  else if (strcmp(colorclass, "focused_separator") == 0)
793  else
795 }
796 
797 CFGFUN(bar_status_command, const char *command) {
799  current_bar->status_command = sstrdup(command);
800 }
801 
802 CFGFUN(bar_binding_mode_indicator, const char *value) {
804 }
805 
806 CFGFUN(bar_workspace_buttons, const char *value) {
808 }
809 
810 CFGFUN(bar_workspace_min_width, const long width) {
812 }
813 
814 CFGFUN(bar_strip_workspace_numbers, const char *value) {
816 }
817 
818 CFGFUN(bar_strip_workspace_name, const char *value) {
820 }
821 
822 CFGFUN(bar_start) {
823  current_bar = scalloc(1, sizeof(struct Barconfig));
824  TAILQ_INIT(&(current_bar->bar_bindings));
825  TAILQ_INIT(&(current_bar->tray_outputs));
827  current_bar->modifier = XCB_KEY_BUT_MASK_MOD_4;
828 }
829 
830 CFGFUN(bar_finish) {
831  DLOG("\t new bar configuration finished, saving.\n");
832  /* Generate a unique ID for this bar if not already configured */
833  if (current_bar->id == NULL)
835 
837 
838  /* If no font was explicitly set, we use the i3 font as default */
839  if (current_bar->font == NULL && font_pattern != NULL)
841 
843  /* Simply reset the pointer, but don't free the resources. */
844  current_bar = NULL;
845 }
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 Match current_match
Config config
Definition: config.c:17
struct barconfig_head barconfigs
Definition: config.c:19
struct modes_head modes
Definition: config.c:18
CFGFUN(criteria_init, int _state)
static char * font_pattern
static bool current_mode_pango_markup
static void bar_configure_binding(const char *button, const char *release, const char *command)
static void create_gaps_assignment(const char *workspace, const char *scope, gaps_t gaps)
static char * current_workspace
static int criteria_next_state
static Barconfig * current_bar
#define APPLY_COLORS(classname)
static char * current_mode
static bool eval_boolstr(const char *str)
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...
void ipc_set_kill_timeout(ev_tstamp new)
Set the maximum duration that we allow for a connection with an unwriteable socket.
Definition: ipc.c:51
static bool verbose
Definition: log.c:35
bool force_xinerama
Definition: main.c:101
struct autostarts_always_head autostarts_always
Definition: main.c:88
struct autostarts_head autostarts
Definition: main.c:85
struct assignments_head assignments
Definition: main.c:91
struct ws_assignments_head ws_assignments
Definition: main.c:95
struct bindings_head * bindings
Definition: main.c:81
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:63
void match_free(Match *match)
Frees the given match.
Definition: match.c:283
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:299
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:823
@ HEBM_VERTICAL
Definition: data.h:88
@ HEBM_SMART_NO_GAPS
Definition: data.h:92
@ HEBM_HORIZONTAL
Definition: data.h:89
@ HEBM_BOTH
Definition: data.h:90
@ HEBM_SMART
Definition: data.h:91
@ HEBM_NONE
Definition: data.h:87
@ SMART_GAPS_INVERSE_OUTER
Definition: data.h:85
@ SMART_GAPS_ON
Definition: data.h:84
@ SMART_GAPS_OFF
Definition: data.h:83
@ I3_XKB_GROUP_MASK_2
Definition: data.h:124
@ I3_XKB_GROUP_MASK_3
Definition: data.h:125
@ I3_XKB_GROUP_MASK_4
Definition: data.h:126
@ I3_XKB_GROUP_MASK_1
Definition: data.h:123
@ SMART_BORDERS_ON
Definition: data.h:80
@ SMART_BORDERS_NO_GAPS
Definition: data.h:81
@ SMART_BORDERS_OFF
Definition: data.h:79
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:135
@ POINTER_WARPING_OUTPUT
Definition: data.h:141
@ POINTER_WARPING_NONE
Definition: data.h:142
@ L_STACKED
Definition: data.h:102
@ L_TABBED
Definition: data.h:103
@ L_DEFAULT
Definition: data.h:101
@ FOCUS_WRAPPING_OFF
Definition: data.h:157
@ FOCUS_WRAPPING_ON
Definition: data.h:158
@ FOCUS_WRAPPING_FORCE
Definition: data.h:159
@ FOCUS_WRAPPING_WORKSPACE
Definition: data.h:160
@ VERT
Definition: data.h:59
@ HORIZ
Definition: data.h:58
@ NO_ORIENTATION
Definition: data.h:57
@ BS_NONE
Definition: data.h:63
@ BS_PIXEL
Definition: data.h:64
@ BS_NORMAL
Definition: data.h:62
struct gaps_t gaps_t
Definition: data.h:47
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:104
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:99
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...
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 FREE(pointer)
Definition: util.h:47
The configuration file can contain multiple sets of bindings.
Definition: configuration.h:78
char * name
Definition: configuration.h:79
bool pango_markup
Definition: configuration.h:80
focus_wrapping_t focus_wrapping
When focus wrapping is enabled (the default), attempting to move focus past the edge of the screen (i...
gaps_t gaps
char * restart_state_path
Definition: configuration.h:96
bool workspace_auto_back_and_forth
Automatic workspace back and forth switching.
int32_t floating_minimum_width
enum Config::@7 title_align
Title alignment options.
int default_border_width
i3Font font
Definition: configuration.h:93
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.
struct Config::config_client client
warping_t mouse_warping
By default, when switching focus to a window on a different output (e.g.
smart_gaps_t smart_gaps
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
Definition: configuration.h:95
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.
int32_t floating_maximum_width
Maximum and minimum dimensions of a floating window.
enum Config::@6 focus_on_window_activation
Behavior when a window sends a NET_ACTIVE_WINDOW message.
bool force_xinerama
By default, use the RandR API for multi-monitor setups.
smart_borders_t smart_borders
int32_t floating_maximum_height
border_style_t default_border
The default border style for new windows.
layout_t default_layout
Definition: configuration.h:98
border_style_t default_floating_border
The default border style for new floating windows.
enum Config::@8 popup_during_fullscreen
What should happen when a new popup is opened during fullscreen mode.
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.
enum Barconfig::@11 position
Bar position (bottom by default).
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).
uint32_t bar_height
Defines the height of the bar in pixels.
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.
char * font
Font specification for all text rendered on the bar.
enum Barconfig::@10 hidden_state
char * id
Automatically generated ID for this bar config.
enum Barconfig::@9 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.
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.
Definition: data.h:145
int inner
Definition: data.h:146
int left
Definition: data.h:150
int right
Definition: data.h:148
int top
Definition: data.h:147
int bottom
Definition: data.h:149
Stores which workspace (by name or number) goes to which output and its gaps config.
Definition: data.h:223
Holds a command specified by either an:
Definition: data.h:357
bool no_startup_id
no_startup_id flag for start_application().
Definition: data.h:362
char * command
Command, like in command mode.
Definition: data.h:359
enum Match::@16 window_mode
An Assignment makes specific windows go to a specific workspace/output or run a command for that wind...
Definition: data.h:575
Match match
the criteria to check if a window matches
Definition: data.h:597
char * output
Definition: data.h:603
union Assignment::@19 dest
destination workspace/command/output, depending on the type
char * command
Definition: data.h:601
char * workspace
Definition: data.h:602
enum Assignment::@18 type
type of this assignment: