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 <float.h>
13 #include <stdarg.h>
14 
15 /*******************************************************************************
16  * Criteria functions.
17  ******************************************************************************/
18 
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);
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  */
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 */
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;
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 (strcmp(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);
139  current_mode = sstrdup(modename);
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) {
149  } else {
151  }
152 }
153 
154 CFGFUN(for_window, const char *command) {
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);
165 }
166 
167 static void create_gaps_assignment(const char *workspace, const char *scope, gaps_t gaps) {
168  DLOG("Setting gaps for workspace %s", workspace);
169 
170  struct Workspace_Assignment *assignment;
172  if (strcasecmp(assignment->name, workspace) == 0) {
173  if (!strcmp(scope, "inner")) {
174  assignment->gaps.inner = gaps.inner;
175  } else if (!strcmp(scope, "outer")) {
176  assignment->gaps.top = gaps.top;
177  assignment->gaps.right = gaps.right;
178  assignment->gaps.bottom = gaps.bottom;
179  assignment->gaps.left = gaps.left;
180  } else if (!strcmp(scope, "vertical")) {
181  assignment->gaps.top = gaps.top;
182  assignment->gaps.bottom = gaps.bottom;
183  } else if (!strcmp(scope, "horizontal")) {
184  assignment->gaps.right = gaps.right;
185  assignment->gaps.left = gaps.left;
186  } else if (!strcmp(scope, "top")) {
187  assignment->gaps.top = gaps.top;
188  } else if (!strcmp(scope, "right")) {
189  assignment->gaps.right = gaps.right;
190  } else if (!strcmp(scope, "bottom")) {
191  assignment->gaps.bottom = gaps.bottom;
192  } else if (!strcmp(scope, "left")) {
193  assignment->gaps.left = gaps.left;
194  } else {
195  ELOG("Invalid command, cannot process scope %s", scope);
196  }
197 
198  return;
199  }
200  }
201 
202  // Assignment does not yet exist, let's create it.
203  assignment = scalloc(1, sizeof(struct Workspace_Assignment));
204  assignment->name = sstrdup(workspace);
205  assignment->output = NULL;
206  if (!strcmp(scope, "inner")) {
207  assignment->gaps.inner = gaps.inner;
208  } else if (!strcmp(scope, "outer")) {
209  assignment->gaps.top = gaps.top;
210  assignment->gaps.right = gaps.right;
211  assignment->gaps.bottom = gaps.bottom;
212  assignment->gaps.left = gaps.left;
213  } else if (!strcmp(scope, "vertical")) {
214  assignment->gaps.top = gaps.top;
215  assignment->gaps.bottom = gaps.bottom;
216  } else if (!strcmp(scope, "horizontal")) {
217  assignment->gaps.right = gaps.right;
218  assignment->gaps.left = gaps.left;
219  } else if (!strcmp(scope, "top")) {
220  assignment->gaps.top = gaps.top;
221  } else if (!strcmp(scope, "right")) {
222  assignment->gaps.right = gaps.right;
223  } else if (!strcmp(scope, "bottom")) {
224  assignment->gaps.bottom = gaps.bottom;
225  } else if (!strcmp(scope, "left")) {
226  assignment->gaps.left = gaps.left;
227  } else {
228  ELOG("Invalid command, cannot process scope %s", scope);
229  }
231 }
232 
233 CFGFUN(gaps, const char *workspace, const char *scope, const long value) {
234  int pixels = logical_px(value);
235  gaps_t gaps = (gaps_t){0, 0, 0, 0, 0};
236  if (!strcmp(scope, "inner")) {
237  if (workspace == NULL)
238  config.gaps.inner = pixels;
239  else {
240  gaps.inner = pixels - config.gaps.inner;
241  create_gaps_assignment(workspace, scope, gaps);
242  }
243  } else if (!strcmp(scope, "outer")) {
244  if (workspace == NULL) {
245  config.gaps.top = pixels;
246  config.gaps.right = pixels;
247  config.gaps.bottom = pixels;
248  config.gaps.left = pixels;
249  } else {
250  gaps.top = pixels - config.gaps.top;
251  gaps.right = pixels - config.gaps.right;
252  gaps.bottom = pixels - config.gaps.bottom;
253  gaps.left = pixels - config.gaps.left;
254  create_gaps_assignment(workspace, scope, gaps);
255  }
256  } else if (!strcmp(scope, "vertical")) {
257  if (workspace == NULL) {
258  config.gaps.top = pixels;
259  config.gaps.bottom = pixels;
260  } else {
261  gaps.top = pixels - config.gaps.top;
262  gaps.bottom = pixels - config.gaps.bottom;
263  create_gaps_assignment(workspace, scope, gaps);
264  }
265  } else if (!strcmp(scope, "horizontal")) {
266  if (workspace == NULL) {
267  config.gaps.right = pixels;
268  config.gaps.left = pixels;
269  } else {
270  gaps.right = pixels - config.gaps.right;
271  gaps.left = pixels - config.gaps.left;
272  create_gaps_assignment(workspace, scope, gaps);
273  }
274  } else if (!strcmp(scope, "top")) {
275  if (workspace == NULL)
276  config.gaps.top = pixels;
277  else {
278  gaps.top = pixels - config.gaps.top;
279  create_gaps_assignment(workspace, scope, gaps);
280  }
281  } else if (!strcmp(scope, "right")) {
282  if (workspace == NULL)
283  config.gaps.right = pixels;
284  else {
285  gaps.right = pixels - config.gaps.right;
286  create_gaps_assignment(workspace, scope, gaps);
287  }
288  } else if (!strcmp(scope, "bottom")) {
289  if (workspace == NULL)
290  config.gaps.bottom = pixels;
291  else {
292  gaps.bottom = pixels - config.gaps.bottom;
293  create_gaps_assignment(workspace, scope, gaps);
294  }
295  } else if (!strcmp(scope, "left")) {
296  if (workspace == NULL)
297  config.gaps.left = pixels;
298  else {
299  gaps.left = pixels - config.gaps.left;
300  create_gaps_assignment(workspace, scope, gaps);
301  }
302  } else {
303  ELOG("Invalid command, cannot process scope %s", scope);
304  }
305 }
306 
307 CFGFUN(smart_borders, const char *enable) {
308  if (!strcmp(enable, "no_gaps"))
310  else
312 }
313 
314 CFGFUN(smart_gaps, const char *enable) {
315  if (!strcmp(enable, "inverse_outer"))
317  else
319 }
320 
321 CFGFUN(floating_minimum_size, const long width, const long height) {
324 }
325 
326 CFGFUN(floating_maximum_size, const long width, const long height) {
329 }
330 
331 CFGFUN(floating_modifier, const char *modifiers) {
333 }
334 
335 CFGFUN(default_orientation, const char *orientation) {
336  if (strcmp(orientation, "horizontal") == 0)
338  else if (strcmp(orientation, "vertical") == 0)
340  else
342 }
343 
344 CFGFUN(workspace_layout, const char *layout) {
345  if (strcmp(layout, "default") == 0)
347  else if (strcmp(layout, "stacking") == 0 ||
348  strcmp(layout, "stacked") == 0)
350  else
352 }
353 
354 CFGFUN(default_border, const char *windowtype, const char *border, const long width) {
355  int border_style;
356  int border_width;
357 
358  if (strcmp(border, "1pixel") == 0) {
359  border_style = BS_PIXEL;
360  border_width = 1;
361  } else if (strcmp(border, "none") == 0) {
362  border_style = BS_NONE;
363  border_width = 0;
364  } else if (strcmp(border, "pixel") == 0) {
365  border_style = BS_PIXEL;
366  border_width = width;
367  } else {
368  border_style = BS_NORMAL;
369  border_width = width;
370  }
371 
372  if ((strcmp(windowtype, "default_border") == 0) ||
373  (strcmp(windowtype, "new_window") == 0)) {
374  DLOG("default tiled border style = %d and border width = %d (%d physical px)\n",
375  border_style, border_width, logical_px(border_width));
376  config.default_border = border_style;
377  config.default_border_width = logical_px(border_width);
378  } else {
379  DLOG("default floating border style = %d and border width = %d (%d physical px)\n",
380  border_style, border_width, logical_px(border_width));
381  config.default_floating_border = border_style;
383  }
384 }
385 
386 CFGFUN(hide_edge_borders, const char *borders) {
387  if (strcmp(borders, "smart_no_gaps") == 0)
389  else if (strcmp(borders, "smart") == 0)
391  else if (strcmp(borders, "vertical") == 0)
393  else if (strcmp(borders, "horizontal") == 0)
395  else if (strcmp(borders, "both") == 0)
397  else if (strcmp(borders, "none") == 0)
399  else if (eval_boolstr(borders))
401  else
403 }
404 
405 CFGFUN(focus_follows_mouse, const char *value) {
407 }
408 
409 CFGFUN(mouse_warping, const char *value) {
410  if (strcmp(value, "none") == 0)
412  else if (strcmp(value, "output") == 0)
414 }
415 
416 CFGFUN(force_xinerama, const char *value) {
418 }
419 
420 CFGFUN(disable_randr15, const char *value) {
422 }
423 
424 CFGFUN(focus_wrapping, const char *value) {
425  if (strcmp(value, "force") == 0) {
427  } else if (strcmp(value, "workspace") == 0) {
429  } else if (eval_boolstr(value)) {
431  } else {
433  }
434 }
435 
436 CFGFUN(force_focus_wrapping, const char *value) {
437  /* Legacy syntax. */
438  if (eval_boolstr(value)) {
440  } else {
441  /* For "force_focus_wrapping off", don't enable or disable
442  * focus wrapping, just ensure it's not forced. */
445  }
446  }
447 }
448 
449 CFGFUN(workspace_back_and_forth, const char *value) {
451 }
452 
453 CFGFUN(fake_outputs, const char *outputs) {
454  free(config.fake_outputs);
456 }
457 
458 CFGFUN(force_display_urgency_hint, const long duration_ms) {
459  config.workspace_urgency_timer = duration_ms / 1000.0;
460 }
461 
462 CFGFUN(focus_on_window_activation, const char *mode) {
463  if (strcmp(mode, "smart") == 0)
464  config.focus_on_window_activation = FOWA_SMART;
465  else if (strcmp(mode, "urgent") == 0)
466  config.focus_on_window_activation = FOWA_URGENT;
467  else if (strcmp(mode, "focus") == 0)
468  config.focus_on_window_activation = FOWA_FOCUS;
469  else if (strcmp(mode, "none") == 0)
471  else {
472  ELOG("Unknown focus_on_window_activation mode \"%s\", ignoring it.\n", mode);
473  return;
474  }
475 
476  DLOG("Set new focus_on_window_activation mode = %i.\n", config.focus_on_window_activation);
477 }
478 
479 CFGFUN(title_align, const char *alignment) {
480  if (strcmp(alignment, "left") == 0) {
481  config.title_align = ALIGN_LEFT;
482  } else if (strcmp(alignment, "center") == 0) {
483  config.title_align = ALIGN_CENTER;
484  } else if (strcmp(alignment, "right") == 0) {
485  config.title_align = ALIGN_RIGHT;
486  } else {
487  assert(false);
488  }
489 }
490 
491 CFGFUN(show_marks, const char *value) {
492  config.show_marks = eval_boolstr(value);
493 }
494 
495 static char *current_workspace = NULL;
496 
497 CFGFUN(workspace, const char *workspace, const char *output) {
498  struct Workspace_Assignment *assignment;
499 
500  /* When a new workspace line is encountered, for the first output word,
501  * $workspace from the config.spec is non-NULL. Afterwards, the parser calls
502  * clear_stack() because of the call line. Thus, we have to preserve the
503  * workspace string. */
504  if (workspace) {
506 
508  if (strcasecmp(assignment->name, workspace) == 0) {
509  if (assignment->output != NULL) {
510  ELOG("You have a duplicate workspace assignment for workspace \"%s\"\n",
511  workspace);
512  return;
513  }
514  }
515  }
516 
517  current_workspace = sstrdup(workspace);
518  } else {
519  if (!current_workspace) {
520  DLOG("Both workspace and current_workspace are NULL, assuming we had an error before\n");
521  return;
522  }
523  workspace = current_workspace;
524  }
525 
526  DLOG("Assigning workspace \"%s\" to output \"%s\"\n", workspace, output);
527 
528  assignment = scalloc(1, sizeof(struct Workspace_Assignment));
529  assignment->name = sstrdup(workspace);
530  assignment->output = sstrdup(output);
532 }
533 
534 CFGFUN(ipc_socket, const char *path) {
535  free(config.ipc_socket_path);
537 }
538 
539 CFGFUN(restart_state, const char *path) {
542 }
543 
544 CFGFUN(popup_during_fullscreen, const char *value) {
545  if (strcmp(value, "ignore") == 0) {
546  config.popup_during_fullscreen = PDF_IGNORE;
547  } else if (strcmp(value, "leave_fullscreen") == 0) {
548  config.popup_during_fullscreen = PDF_LEAVE_FULLSCREEN;
549  } else {
550  config.popup_during_fullscreen = PDF_SMART;
551  }
552 }
553 
554 CFGFUN(color_single, const char *colorclass, const char *color) {
555  /* used for client.background only currently */
557 }
558 
559 CFGFUN(color, const char *colorclass, const char *qubelabel, const char *border, const char *background, const char *text, const char *indicator, const char *child_border) {
560 #define APPLY_COLORS(classname, label) \
561  do { \
562  if (strcmp(colorclass, "client." #classname) == 0) { \
563  config.client[label].classname.border = \
564  draw_util_hex_to_color(border); \
565  config.client[label].classname.background = \
566  draw_util_hex_to_color(background); \
567  config.client[label].classname.text = \
568  draw_util_hex_to_color(text); \
569  if (indicator != NULL) { \
570  config.client[label].classname.indicator = \
571  draw_util_hex_to_color(indicator); \
572  } \
573  if (child_border != NULL) { \
574  config.client[label].classname.child_border = \
575  draw_util_hex_to_color(child_border); \
576  } else { \
577  config.client[label].classname.child_border = \
578  config.client[label].classname.background;\
579  } \
580  } \
581  } while (0)
582 
583  int valid_color = 1;
584  qube_label_t label = QUBE_DOM0;
585  if (strcmp(qubelabel, "dom0") == 0) {
586  label = QUBE_DOM0;
587  } else if (strcmp(qubelabel, "red") == 0) {
588  label = QUBE_RED;
589  } else if (strcmp(qubelabel, "orange") == 0) {
590  label = QUBE_ORANGE;
591  } else if (strcmp(qubelabel, "yellow") == 0) {
592  label = QUBE_YELLOW;
593  } else if (strcmp(qubelabel, "green") == 0) {
594  label = QUBE_GREEN;
595  } else if (strcmp(qubelabel, "gray") == 0) {
596  label = QUBE_GRAY;
597  } else if (strcmp(qubelabel, "blue") == 0) {
598  label = QUBE_BLUE;
599  } else if (strcmp(qubelabel, "purple") == 0) {
600  label = QUBE_PURPLE;
601  } else if (strcmp(qubelabel, "black") == 0) {
602  label = QUBE_BLACK;
603  } else {
604  valid_color = 0;
605  }
606 
607  if (valid_color) {
608  APPLY_COLORS(focused_inactive, label);
609  APPLY_COLORS(focused, label);
610  APPLY_COLORS(unfocused, label);
611  APPLY_COLORS(urgent, label);
612  }
613 
614 #undef APPLY_COLORS
615 }
616 
617 CFGFUN(assign_output, const char *output) {
619  ELOG("Match is empty, ignoring this assignment\n");
620  return;
621  }
622 
623  if (current_match->window_mode != WM_ANY) {
624  ELOG("Assignments using window mode (floating/tiling) is not supported\n");
625  return;
626  }
627 
628  DLOG("New assignment, using above criteria, to output \"%s\".\n", output);
629  Assignment *assignment = scalloc(1, sizeof(Assignment));
630  match_copy(&(assignment->match), current_match);
631  assignment->type = A_TO_OUTPUT;
632  assignment->dest.output = sstrdup(output);
634 }
635 
636 CFGFUN(assign, const char *workspace, bool is_number) {
638  ELOG("Match is empty, ignoring this assignment\n");
639  return;
640  }
641 
642  if (current_match->window_mode != WM_ANY) {
643  ELOG("Assignments using window mode (floating/tiling) is not supported\n");
644  return;
645  }
646 
647  if (is_number && ws_name_to_number(workspace) == -1) {
648  ELOG("Could not parse initial part of \"%s\" as a number.\n", workspace);
649  return;
650  }
651 
652  DLOG("New assignment, using above criteria, to workspace \"%s\".\n", workspace);
653  Assignment *assignment = scalloc(1, sizeof(Assignment));
654  match_copy(&(assignment->match), current_match);
655  assignment->type = is_number ? A_TO_WORKSPACE_NUMBER : A_TO_WORKSPACE;
656  assignment->dest.workspace = sstrdup(workspace);
658 }
659 
660 CFGFUN(no_focus) {
662  ELOG("Match is empty, ignoring this assignment\n");
663  return;
664  }
665 
666  DLOG("New assignment, using above criteria, to ignore focus on manage.\n");
667  Assignment *assignment = scalloc(1, sizeof(Assignment));
668  match_copy(&(assignment->match), current_match);
669  assignment->type = A_NO_FOCUS;
671 }
672 
673 CFGFUN(ipc_kill_timeout, const long timeout_ms) {
674  ipc_set_kill_timeout(timeout_ms / 1000.0);
675 }
676 
677 /*******************************************************************************
678  * Bar configuration (i3bar)
679  ******************************************************************************/
680 
682 
683 CFGFUN(bar_font, const char *font) {
685  current_bar->font = sstrdup(font);
686 }
687 
688 CFGFUN(bar_separator_symbol, const char *separator) {
690  current_bar->separator_symbol = sstrdup(separator);
691 }
692 
693 CFGFUN(bar_mode, const char *mode) {
694  current_bar->mode = (strcmp(mode, "dock") == 0 ? M_DOCK : (strcmp(mode, "hide") == 0 ? M_HIDE : M_INVISIBLE));
695 }
696 
697 CFGFUN(bar_hidden_state, const char *hidden_state) {
698  current_bar->hidden_state = (strcmp(hidden_state, "hide") == 0 ? S_HIDE : S_SHOW);
699 }
700 
701 CFGFUN(bar_id, const char *bar_id) {
702  current_bar->id = sstrdup(bar_id);
703 }
704 
705 CFGFUN(bar_output, const char *output) {
706  int new_outputs = current_bar->num_outputs + 1;
707  current_bar->outputs = srealloc(current_bar->outputs, sizeof(char *) * new_outputs);
709  current_bar->num_outputs = new_outputs;
710 }
711 
712 CFGFUN(bar_verbose, const char *verbose) {
714 }
715 
716 CFGFUN(bar_height, const long height) {
717  current_bar->bar_height = (uint32_t)height;
718 }
719 
720 CFGFUN(bar_modifier, const char *modifiers) {
721  current_bar->modifier = modifiers ? event_state_from_str(modifiers) : XCB_NONE;
722 }
723 
724 static void bar_configure_binding(const char *button, const char *release, const char *command) {
725  if (strncasecmp(button, "button", strlen("button")) != 0) {
726  ELOG("Bindings for a bar can only be mouse bindings, not \"%s\", ignoring.\n", button);
727  return;
728  }
729 
730  int input_code = atoi(button + strlen("button"));
731  if (input_code < 1) {
732  ELOG("Button \"%s\" does not seem to be in format 'buttonX'.\n", button);
733  return;
734  }
735  const bool release_bool = release != NULL;
736 
737  struct Barbinding *current;
739  if (current->input_code == input_code && current->release == release_bool) {
740  ELOG("command for button %s was already specified, ignoring.\n", button);
741  return;
742  }
743  }
744 
745  struct Barbinding *new_binding = scalloc(1, sizeof(struct Barbinding));
746  new_binding->release = release_bool;
747  new_binding->input_code = input_code;
748  new_binding->command = sstrdup(command);
750 }
751 
752 CFGFUN(bar_wheel_up_cmd, const char *command) {
753  ELOG("'wheel_up_cmd' is deprecated. Please us 'bindsym button4 %s' instead.\n", command);
754  bar_configure_binding("button4", NULL, command);
755 }
756 
757 CFGFUN(bar_wheel_down_cmd, const char *command) {
758  ELOG("'wheel_down_cmd' is deprecated. Please us 'bindsym button5 %s' instead.\n", command);
759  bar_configure_binding("button5", NULL, command);
760 }
761 
762 CFGFUN(bar_bindsym, const char *button, const char *release, const char *command) {
764 }
765 
766 CFGFUN(bar_position, const char *position) {
767  current_bar->position = (strcmp(position, "top") == 0 ? P_TOP : P_BOTTOM);
768 }
769 
770 CFGFUN(bar_i3bar_command, const char *i3bar_command) {
772  current_bar->i3bar_command = sstrdup(i3bar_command);
773 }
774 
775 CFGFUN(bar_color, const char *colorclass, const char *border, const char *background, const char *text) {
776 #define APPLY_COLORS(classname) \
777  do { \
778  if (strcmp(colorclass, #classname) == 0) { \
779  if (text != NULL) { \
780  /* New syntax: border, background, text */ \
781  current_bar->colors.classname##_border = sstrdup(border); \
782  current_bar->colors.classname##_bg = sstrdup(background); \
783  current_bar->colors.classname##_text = sstrdup(text); \
784  } else { \
785  /* Old syntax: text, background */ \
786  current_bar->colors.classname##_bg = sstrdup(background); \
787  current_bar->colors.classname##_text = sstrdup(border); \
788  } \
789  } \
790  } while (0)
791 
792  APPLY_COLORS(focused_workspace);
793  APPLY_COLORS(active_workspace);
794  APPLY_COLORS(inactive_workspace);
795  APPLY_COLORS(urgent_workspace);
796  APPLY_COLORS(binding_mode);
797 
798 #undef APPLY_COLORS
799 }
800 
801 CFGFUN(bar_socket_path, const char *socket_path) {
803  current_bar->socket_path = sstrdup(socket_path);
804 }
805 
806 CFGFUN(bar_tray_output, const char *output) {
807  struct tray_output_t *tray_output = scalloc(1, sizeof(struct tray_output_t));
808  tray_output->output = sstrdup(output);
810 }
811 
812 CFGFUN(bar_tray_padding, const long padding_px) {
813  current_bar->tray_padding = padding_px;
814 }
815 
816 CFGFUN(bar_color_single, const char *colorclass, const char *color) {
817  if (strcmp(colorclass, "background") == 0)
819  else if (strcmp(colorclass, "separator") == 0)
821  else if (strcmp(colorclass, "statusline") == 0)
823  else if (strcmp(colorclass, "focused_background") == 0)
825  else if (strcmp(colorclass, "focused_separator") == 0)
827  else
829 }
830 
831 CFGFUN(bar_status_command, const char *command) {
833  current_bar->status_command = sstrdup(command);
834 }
835 
836 CFGFUN(bar_binding_mode_indicator, const char *value) {
838 }
839 
840 CFGFUN(bar_workspace_buttons, const char *value) {
842 }
843 
844 CFGFUN(bar_workspace_min_width, const long width) {
846 }
847 
848 CFGFUN(bar_strip_workspace_numbers, const char *value) {
850 }
851 
852 CFGFUN(bar_strip_workspace_name, const char *value) {
854 }
855 
856 CFGFUN(bar_start) {
857  current_bar = scalloc(1, sizeof(struct Barconfig));
861  current_bar->modifier = XCB_KEY_BUT_MASK_MOD_4;
862 }
863 
864 CFGFUN(bar_finish) {
865  DLOG("\t new bar configuration finished, saving.\n");
866  /* Generate a unique ID for this bar if not already configured */
867  if (current_bar->id == NULL)
869 
871 
872  /* If no font was explicitly set, we use the i3 font as default */
873  if (current_bar->font == NULL && font_pattern != NULL)
875 
877  /* Simply reset the pointer, but don't free the resources. */
878  current_bar = NULL;
879 }
const char * DEFAULT_BINDING_MODE
The name of the default mode.
Definition: bindings.c:23
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:57
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
#define APPLY_COLORS(classname, label)
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
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:49
static bool verbose
Definition: log.c:38
bool force_xinerama
Definition: main.c:94
struct autostarts_always_head autostarts_always
Definition: main.c:80
struct autostarts_head autostarts
Definition: main.c:77
struct assignments_head assignments
Definition: main.c:83
struct ws_assignments_head ws_assignments
Definition: main.c:87
struct bindings_head * bindings
Definition: main.c:74
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:62
void match_free(Match *match)
Frees the given match.
Definition: match.c:241
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:256
struct outputs_head outputs
Definition: randr.c:21
struct Con * focused
Definition: tree.c:13
long ws_name_to_number(const char *name)
Parses the workspace name as a number.
Definition: util.c:106
void workspace_back_and_forth(void)
Focuses the previously focused workspace.
Definition: workspace.c:829
@ HEBM_VERTICAL
Definition: data.h:91
@ HEBM_SMART_NO_GAPS
Definition: data.h:95
@ HEBM_HORIZONTAL
Definition: data.h:92
@ HEBM_BOTH
Definition: data.h:93
@ HEBM_SMART
Definition: data.h:94
@ HEBM_NONE
Definition: data.h:90
@ SMART_GAPS_INVERSE_OUTER
Definition: data.h:88
@ SMART_GAPS_ON
Definition: data.h:87
@ SMART_GAPS_OFF
Definition: data.h:86
@ I3_XKB_GROUP_MASK_2
Definition: data.h:127
@ I3_XKB_GROUP_MASK_3
Definition: data.h:128
@ I3_XKB_GROUP_MASK_4
Definition: data.h:129
@ I3_XKB_GROUP_MASK_1
Definition: data.h:126
@ SMART_BORDERS_ON
Definition: data.h:83
@ SMART_BORDERS_NO_GAPS
Definition: data.h:84
@ SMART_BORDERS_OFF
Definition: data.h:82
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:138
@ POINTER_WARPING_OUTPUT
Definition: data.h:144
@ POINTER_WARPING_NONE
Definition: data.h:145
@ L_STACKED
Definition: data.h:105
@ L_TABBED
Definition: data.h:106
@ L_DEFAULT
Definition: data.h:104
@ FOCUS_WRAPPING_OFF
Definition: data.h:160
@ FOCUS_WRAPPING_ON
Definition: data.h:161
@ FOCUS_WRAPPING_FORCE
Definition: data.h:162
@ FOCUS_WRAPPING_WORKSPACE
Definition: data.h:163
@ VERT
Definition: data.h:62
@ HORIZ
Definition: data.h:61
@ NO_ORIENTATION
Definition: data.h:60
@ BS_NONE
Definition: data.h:66
@ BS_PIXEL
Definition: data.h:67
@ BS_NORMAL
Definition: data.h:65
qube_label_t
Qubes colors.
Definition: data.h:169
@ QUBE_ORANGE
Definition: data.h:172
@ QUBE_DOM0
Definition: data.h:170
@ QUBE_BLUE
Definition: data.h:176
@ QUBE_YELLOW
Definition: data.h:173
@ QUBE_GRAY
Definition: data.h:175
@ QUBE_GREEN
Definition: data.h:174
@ QUBE_RED
Definition: data.h:171
@ QUBE_PURPLE
Definition: data.h:177
@ QUBE_BLACK
Definition: data.h:178
struct gaps_t gaps_t
Definition: data.h:50
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:82
char * name
Definition: configuration.h:83
bool pango_markup
Definition: configuration.h:84
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
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:98
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.
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
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
struct Config::config_client client[QUBE_NUM_LABELS]
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:148
int inner
Definition: data.h:149
int left
Definition: data.h:153
int right
Definition: data.h:151
int top
Definition: data.h:150
int bottom
Definition: data.h:152
Stores which workspace (by name or number) goes to which output and its gaps config.
Definition: data.h:243
Holds a command specified by either an:
Definition: data.h:384
bool no_startup_id
no_startup_id flag for start_application().
Definition: data.h:389
char * command
Command, like in command mode.
Definition: data.h:386
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:609
Match match
the criteria to check if a window matches
Definition: data.h:631
char * output
Definition: data.h:637
union Assignment::@19 dest
destination workspace/command/output, depending on the type
char * command
Definition: data.h:635
char * workspace
Definition: data.h:636
enum Assignment::@18 type
type of this assignment: