i3
config_directives.c
Go to the documentation of this file.
1 #undef I3__FILE__
2 #define I3__FILE__ "config_directives.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * config_directives.c: all config storing functions (see config_parser.c)
10  *
11  */
12 #include <float.h>
13 #include <stdarg.h>
14 
15 #include "all.h"
16 
17 /*******************************************************************************
18  * Criteria functions.
19  ******************************************************************************/
20 
22 
23 /*
24  * Initializes the specified 'Match' data structure and the initial state of
25  * commands.c for matching target windows of a command.
26  *
27  */
28 CFGFUN(criteria_init, int _state) {
29  criteria_next_state = _state;
30 
31  DLOG("Initializing criteria, current_match = %p, state = %d\n", current_match, _state);
34 }
35 
36 CFGFUN(criteria_pop_state) {
37  result->next_state = criteria_next_state;
38 }
39 
40 /*
41  * Interprets a ctype=cvalue pair and adds it to the current match
42  * specification.
43  *
44  */
45 CFGFUN(criteria_add, const char *ctype, const char *cvalue) {
46  match_parse_property(current_match, ctype, cvalue);
47 }
48 
49 /*******************************************************************************
50  * Utility functions
51  ******************************************************************************/
52 
53 static bool eval_boolstr(const char *str) {
54  return (strcasecmp(str, "1") == 0 ||
55  strcasecmp(str, "yes") == 0 ||
56  strcasecmp(str, "true") == 0 ||
57  strcasecmp(str, "on") == 0 ||
58  strcasecmp(str, "enable") == 0 ||
59  strcasecmp(str, "active") == 0);
60 }
61 
62 /*
63  * A utility function to convert a string containing the group and modifiers to
64  * the corresponding bit mask.
65  */
67  /* It might be better to use strtok() here, but the simpler strstr() should
68  * do for now. */
69  i3_event_state_mask_t result = 0;
70  if (str == NULL)
71  return result;
72  if (strstr(str, "Mod1") != NULL)
73  result |= XCB_KEY_BUT_MASK_MOD_1;
74  if (strstr(str, "Mod2") != NULL)
75  result |= XCB_KEY_BUT_MASK_MOD_2;
76  if (strstr(str, "Mod3") != NULL)
77  result |= XCB_KEY_BUT_MASK_MOD_3;
78  if (strstr(str, "Mod4") != NULL)
79  result |= XCB_KEY_BUT_MASK_MOD_4;
80  if (strstr(str, "Mod5") != NULL)
81  result |= XCB_KEY_BUT_MASK_MOD_5;
82  if (strstr(str, "Control") != NULL ||
83  strstr(str, "Ctrl") != NULL)
84  result |= XCB_KEY_BUT_MASK_CONTROL;
85  if (strstr(str, "Shift") != NULL)
86  result |= XCB_KEY_BUT_MASK_SHIFT;
87 
88  if (strstr(str, "Group1") != NULL)
89  result |= (I3_XKB_GROUP_MASK_1 << 16);
90  if (strstr(str, "Group2") != NULL ||
91  strstr(str, "Mode_switch") != NULL)
92  result |= (I3_XKB_GROUP_MASK_2 << 16);
93  if (strstr(str, "Group3") != NULL)
94  result |= (I3_XKB_GROUP_MASK_3 << 16);
95  if (strstr(str, "Group4") != NULL)
96  result |= (I3_XKB_GROUP_MASK_4 << 16);
97  return result;
98 }
99 
100 static char *font_pattern;
101 
102 CFGFUN(font, const char *font) {
103  config.font = load_font(font, true);
104  set_font(&config.font);
105 
106  /* Save the font pattern for using it as bar font later on */
108  font_pattern = sstrdup(font);
109 }
110 
111 CFGFUN(binding, const char *bindtype, const char *modifiers, const char *key, const char *release, const char *border, const char *whole_window, const char *command) {
112  configure_binding(bindtype, modifiers, key, release, border, whole_window, command, DEFAULT_BINDING_MODE, false);
113 }
114 
115 /*******************************************************************************
116  * Mode handling
117  ******************************************************************************/
118 
119 static char *current_mode;
121 
122 CFGFUN(mode_binding, const char *bindtype, const char *modifiers, const char *key, const char *release, const char *border, const char *whole_window, const char *command) {
123  configure_binding(bindtype, modifiers, key, release, border, whole_window, command, current_mode, current_mode_pango_markup);
124 }
125 
126 CFGFUN(enter_mode, const char *pango_markup, const char *modename) {
127  if (strcasecmp(modename, DEFAULT_BINDING_MODE) == 0) {
128  ELOG("You cannot use the name %s for your mode\n", DEFAULT_BINDING_MODE);
129  exit(1);
130  }
131  DLOG("\t now in mode %s\n", modename);
133  current_mode = sstrdup(modename);
134  current_mode_pango_markup = (pango_markup != NULL);
135 }
136 
137 CFGFUN(exec, const char *exectype, const char *no_startup_id, const char *command) {
138  struct Autostart *new = smalloc(sizeof(struct Autostart));
139  new->command = sstrdup(command);
140  new->no_startup_id = (no_startup_id != NULL);
141  if (strcmp(exectype, "exec") == 0) {
143  } else {
145  }
146 }
147 
148 CFGFUN(for_window, const char *command) {
150  ELOG("Match is empty, ignoring this for_window statement\n");
151  return;
152  }
153  DLOG("\t should execute command %s for the criteria mentioned above\n", command);
154  Assignment *assignment = scalloc(1, sizeof(Assignment));
155  assignment->type = A_COMMAND;
156  match_copy(&(assignment->match), current_match);
157  assignment->dest.command = sstrdup(command);
159 }
160 
161 CFGFUN(floating_minimum_size, const long width, const long height) {
164 }
165 
166 CFGFUN(floating_maximum_size, const long width, const long height) {
169 }
170 
171 CFGFUN(floating_modifier, const char *modifiers) {
173 }
174 
175 CFGFUN(default_orientation, const char *orientation) {
176  if (strcmp(orientation, "horizontal") == 0)
178  else if (strcmp(orientation, "vertical") == 0)
180  else
182 }
183 
184 CFGFUN(workspace_layout, const char *layout) {
185  if (strcmp(layout, "default") == 0)
187  else if (strcmp(layout, "stacking") == 0 ||
188  strcmp(layout, "stacked") == 0)
190  else
192 }
193 
194 CFGFUN(new_window, const char *windowtype, const char *border, const long width) {
195  int border_style;
196  int border_width;
197 
198  if (strcmp(border, "1pixel") == 0) {
199  border_style = BS_PIXEL;
200  border_width = 1;
201  } else if (strcmp(border, "none") == 0) {
202  border_style = BS_NONE;
203  border_width = 0;
204  } else if (strcmp(border, "pixel") == 0) {
205  border_style = BS_PIXEL;
206  border_width = width;
207  } else {
208  border_style = BS_NORMAL;
209  border_width = width;
210  }
211 
212  if (strcmp(windowtype, "new_window") == 0) {
213  DLOG("default tiled border style = %d and border width = %d (%d physical px)\n",
214  border_style, border_width, logical_px(border_width));
215  config.default_border = border_style;
216  config.default_border_width = logical_px(border_width);
217  } else {
218  DLOG("default floating border style = %d and border width = %d (%d physical px)\n",
219  border_style, border_width, logical_px(border_width));
220  config.default_floating_border = border_style;
222  }
223 }
224 
225 CFGFUN(hide_edge_borders, const char *borders) {
226  if (strcmp(borders, "vertical") == 0)
228  else if (strcmp(borders, "horizontal") == 0)
230  else if (strcmp(borders, "both") == 0)
232  else if (strcmp(borders, "none") == 0)
234  else if (eval_boolstr(borders))
236  else
238 }
239 
240 CFGFUN(focus_follows_mouse, const char *value) {
242 }
243 
244 CFGFUN(mouse_warping, const char *value) {
245  if (strcmp(value, "none") == 0)
247  else if (strcmp(value, "output") == 0)
249 }
250 
251 CFGFUN(force_xinerama, const char *value) {
253 }
254 
255 CFGFUN(force_focus_wrapping, const char *value) {
257 }
258 
259 CFGFUN(workspace_back_and_forth, const char *value) {
261 }
262 
263 CFGFUN(fake_outputs, const char *outputs) {
264  free(config.fake_outputs);
265  config.fake_outputs = sstrdup(outputs);
266 }
267 
268 CFGFUN(force_display_urgency_hint, const long duration_ms) {
269  config.workspace_urgency_timer = duration_ms / 1000.0;
270 }
271 
272 CFGFUN(focus_on_window_activation, const char *mode) {
273  if (strcmp(mode, "smart") == 0)
274  config.focus_on_window_activation = FOWA_SMART;
275  else if (strcmp(mode, "urgent") == 0)
276  config.focus_on_window_activation = FOWA_URGENT;
277  else if (strcmp(mode, "focus") == 0)
278  config.focus_on_window_activation = FOWA_FOCUS;
279  else if (strcmp(mode, "none") == 0)
281  else {
282  ELOG("Unknown focus_on_window_activation mode \"%s\", ignoring it.\n", mode);
283  return;
284  }
285 
286  DLOG("Set new focus_on_window_activation mode = %i.\n", config.focus_on_window_activation);
287 }
288 
289 CFGFUN(show_marks, const char *value) {
290  config.show_marks = eval_boolstr(value);
291 }
292 
293 CFGFUN(workspace, const char *workspace, const char *output) {
294  DLOG("Assigning workspace \"%s\" to output \"%s\"\n", workspace, output);
295  /* Check for earlier assignments of the same workspace so that we
296  * don’t have assignments of a single workspace to different
297  * outputs */
298  struct Workspace_Assignment *assignment;
299  bool duplicate = false;
301  if (strcasecmp(assignment->name, workspace) == 0) {
302  ELOG("You have a duplicate workspace assignment for workspace \"%s\"\n",
303  workspace);
304  assignment->output = sstrdup(output);
305  duplicate = true;
306  }
307  }
308  if (!duplicate) {
309  assignment = scalloc(1, sizeof(struct Workspace_Assignment));
310  assignment->name = sstrdup(workspace);
311  assignment->output = sstrdup(output);
313  }
314 }
315 
316 CFGFUN(ipc_socket, const char *path) {
317  free(config.ipc_socket_path);
319 }
320 
321 CFGFUN(restart_state, const char *path) {
324 }
325 
326 CFGFUN(popup_during_fullscreen, const char *value) {
327  if (strcmp(value, "ignore") == 0) {
328  config.popup_during_fullscreen = PDF_IGNORE;
329  } else if (strcmp(value, "leave_fullscreen") == 0) {
330  config.popup_during_fullscreen = PDF_LEAVE_FULLSCREEN;
331  } else {
332  config.popup_during_fullscreen = PDF_SMART;
333  }
334 }
335 
336 CFGFUN(color_single, const char *colorclass, const char *color) {
337  /* used for client.background only currently */
339 }
340 
341 CFGFUN(color, const char *colorclass, const char *qubelabel, const char *border, const char *background, const char *text, const char *indicator, const char *child_border) {
342 #define APPLY_COLORS(classname, label) \
343  do { \
344  if (strcmp(colorclass, "client." #classname) == 0) { \
345  config.client[label].classname.border = \
346  draw_util_hex_to_color(border); \
347  config.client[label].classname.background = \
348  draw_util_hex_to_color(background); \
349  config.client[label].classname.text = \
350  draw_util_hex_to_color(text); \
351  if (indicator != NULL) { \
352  config.client[label].classname.indicator = \
353  draw_util_hex_to_color(indicator); \
354  } \
355  if (child_border != NULL) { \
356  config.client[label].classname.child_border = \
357  draw_util_hex_to_color(child_border); \
358  } else { \
359  config.client[label].classname.child_border = \
360  config.client[label].classname.background;\
361  } \
362  } \
363  } while (0)
364 
365  int valid_color = 1;
366  qube_label_t label = QUBE_DOM0;
367  if (strcmp(qubelabel, "dom0") == 0) {
368  label = QUBE_DOM0;
369  } else if (strcmp(qubelabel, "red") == 0) {
370  label = QUBE_RED;
371  } else if (strcmp(qubelabel, "orange") == 0) {
372  label = QUBE_ORANGE;
373  } else if (strcmp(qubelabel, "yellow") == 0) {
374  label = QUBE_YELLOW;
375  } else if (strcmp(qubelabel, "green") == 0) {
376  label = QUBE_GREEN;
377  } else if (strcmp(qubelabel, "gray") == 0) {
378  label = QUBE_GRAY;
379  } else if (strcmp(qubelabel, "blue") == 0) {
380  label = QUBE_BLUE;
381  } else if (strcmp(qubelabel, "purple") == 0) {
382  label = QUBE_PURPLE;
383  } else if (strcmp(qubelabel, "black") == 0) {
384  label = QUBE_BLACK;
385  } else {
386  valid_color = 0;
387  }
388 
389  if (valid_color) {
390  APPLY_COLORS(focused_inactive, label);
391  APPLY_COLORS(focused, label);
392  APPLY_COLORS(unfocused, label);
393  APPLY_COLORS(urgent, label);
394  }
395 
396 #undef APPLY_COLORS
397 }
398 
399 CFGFUN(assign, const char *workspace) {
401  ELOG("Match is empty, ignoring this assignment\n");
402  return;
403  }
404  DLOG("New assignment, using above criteria, to workspace \"%s\".\n", workspace);
405  Assignment *assignment = scalloc(1, sizeof(Assignment));
406  match_copy(&(assignment->match), current_match);
407  assignment->type = A_TO_WORKSPACE;
408  assignment->dest.workspace = sstrdup(workspace);
410 }
411 
412 CFGFUN(no_focus) {
414  ELOG("Match is empty, ignoring this assignment\n");
415  return;
416  }
417 
418  DLOG("New assignment, using above criteria, to ignore focus on manage.\n");
419  Assignment *assignment = scalloc(1, sizeof(Assignment));
420  match_copy(&(assignment->match), current_match);
421  assignment->type = A_NO_FOCUS;
423 }
424 
425 /*******************************************************************************
426  * Bar configuration (i3bar)
427  ******************************************************************************/
428 
430 
431 CFGFUN(bar_font, const char *font) {
432  FREE(current_bar->font);
433  current_bar->font = sstrdup(font);
434 }
435 
436 CFGFUN(bar_separator_symbol, const char *separator) {
437  FREE(current_bar->separator_symbol);
438  current_bar->separator_symbol = sstrdup(separator);
439 }
440 
441 CFGFUN(bar_mode, const char *mode) {
442  current_bar->mode = (strcmp(mode, "dock") == 0 ? M_DOCK : (strcmp(mode, "hide") == 0 ? M_HIDE : M_INVISIBLE));
443 }
444 
445 CFGFUN(bar_hidden_state, const char *hidden_state) {
446  current_bar->hidden_state = (strcmp(hidden_state, "hide") == 0 ? S_HIDE : S_SHOW);
447 }
448 
449 CFGFUN(bar_id, const char *bar_id) {
450  current_bar->id = sstrdup(bar_id);
451 }
452 
453 CFGFUN(bar_output, const char *output) {
454  int new_outputs = current_bar->num_outputs + 1;
455  current_bar->outputs = srealloc(current_bar->outputs, sizeof(char *) * new_outputs);
456  current_bar->outputs[current_bar->num_outputs] = sstrdup(output);
457  current_bar->num_outputs = new_outputs;
458 }
459 
460 CFGFUN(bar_verbose, const char *verbose) {
461  current_bar->verbose = eval_boolstr(verbose);
462 }
463 
464 CFGFUN(bar_modifier, const char *modifier) {
465  if (strcmp(modifier, "Mod1") == 0)
466  current_bar->modifier = M_MOD1;
467  else if (strcmp(modifier, "Mod2") == 0)
468  current_bar->modifier = M_MOD2;
469  else if (strcmp(modifier, "Mod3") == 0)
470  current_bar->modifier = M_MOD3;
471  else if (strcmp(modifier, "Mod4") == 0)
472  current_bar->modifier = M_MOD4;
473  else if (strcmp(modifier, "Mod5") == 0)
474  current_bar->modifier = M_MOD5;
475  else if (strcmp(modifier, "Control") == 0 ||
476  strcmp(modifier, "Ctrl") == 0)
477  current_bar->modifier = M_CONTROL;
478  else if (strcmp(modifier, "Shift") == 0)
479  current_bar->modifier = M_SHIFT;
480  else if (strcmp(modifier, "none") == 0 ||
481  strcmp(modifier, "off") == 0)
482  current_bar->modifier = M_NONE;
483 }
484 
485 static void bar_configure_binding(const char *button, const char *command) {
486  if (strncasecmp(button, "button", strlen("button")) != 0) {
487  ELOG("Bindings for a bar can only be mouse bindings, not \"%s\", ignoring.\n", button);
488  return;
489  }
490 
491  int input_code = atoi(button + strlen("button"));
492  if (input_code < 1) {
493  ELOG("Button \"%s\" does not seem to be in format 'buttonX'.\n", button);
494  return;
495  }
496 
497  struct Barbinding *current;
498  TAILQ_FOREACH(current, &(current_bar->bar_bindings), bindings) {
499  if (current->input_code == input_code) {
500  ELOG("command for button %s was already specified, ignoring.\n", button);
501  return;
502  }
503  }
504 
505  struct Barbinding *new_binding = scalloc(1, sizeof(struct Barbinding));
506  new_binding->input_code = input_code;
507  new_binding->command = sstrdup(command);
508  TAILQ_INSERT_TAIL(&(current_bar->bar_bindings), new_binding, bindings);
509 }
510 
511 CFGFUN(bar_wheel_up_cmd, const char *command) {
512  ELOG("'wheel_up_cmd' is deprecated. Please us 'bindsym button4 %s' instead.\n", command);
513  bar_configure_binding("button4", command);
514 }
515 
516 CFGFUN(bar_wheel_down_cmd, const char *command) {
517  ELOG("'wheel_down_cmd' is deprecated. Please us 'bindsym button5 %s' instead.\n", command);
518  bar_configure_binding("button5", command);
519 }
520 
521 CFGFUN(bar_bindsym, const char *button, const char *command) {
522  bar_configure_binding(button, command);
523 }
524 
525 CFGFUN(bar_position, const char *position) {
526  current_bar->position = (strcmp(position, "top") == 0 ? P_TOP : P_BOTTOM);
527 }
528 
529 CFGFUN(bar_i3bar_command, const char *i3bar_command) {
530  FREE(current_bar->i3bar_command);
531  current_bar->i3bar_command = sstrdup(i3bar_command);
532 }
533 
534 CFGFUN(bar_color, const char *colorclass, const char *border, const char *background, const char *text) {
535 #define APPLY_COLORS(classname) \
536  do { \
537  if (strcmp(colorclass, #classname) == 0) { \
538  if (text != NULL) { \
539  /* New syntax: border, background, text */ \
540  current_bar->colors.classname##_border = sstrdup(border); \
541  current_bar->colors.classname##_bg = sstrdup(background); \
542  current_bar->colors.classname##_text = sstrdup(text); \
543  } else { \
544  /* Old syntax: text, background */ \
545  current_bar->colors.classname##_bg = sstrdup(background); \
546  current_bar->colors.classname##_text = sstrdup(border); \
547  } \
548  } \
549  } while (0)
550 
551  APPLY_COLORS(focused_workspace);
552  APPLY_COLORS(active_workspace);
553  APPLY_COLORS(inactive_workspace);
554  APPLY_COLORS(urgent_workspace);
555  APPLY_COLORS(binding_mode);
556 
557 #undef APPLY_COLORS
558 }
559 
560 CFGFUN(bar_socket_path, const char *socket_path) {
561  FREE(current_bar->socket_path);
562  current_bar->socket_path = sstrdup(socket_path);
563 }
564 
565 CFGFUN(bar_tray_output, const char *output) {
566  struct tray_output_t *tray_output = scalloc(1, sizeof(struct tray_output_t));
567  tray_output->output = sstrdup(output);
568  TAILQ_INSERT_TAIL(&(current_bar->tray_outputs), tray_output, tray_outputs);
569 }
570 
571 CFGFUN(bar_tray_padding, const long padding_px) {
572  current_bar->tray_padding = padding_px;
573 }
574 
575 CFGFUN(bar_color_single, const char *colorclass, const char *color) {
576  if (strcmp(colorclass, "background") == 0)
577  current_bar->colors.background = sstrdup(color);
578  else if (strcmp(colorclass, "separator") == 0)
579  current_bar->colors.separator = sstrdup(color);
580  else if (strcmp(colorclass, "statusline") == 0)
581  current_bar->colors.statusline = sstrdup(color);
582  else if (strcmp(colorclass, "focused_background") == 0)
583  current_bar->colors.focused_background = sstrdup(color);
584  else if (strcmp(colorclass, "focused_separator") == 0)
585  current_bar->colors.focused_separator = sstrdup(color);
586  else
587  current_bar->colors.focused_statusline = sstrdup(color);
588 }
589 
590 CFGFUN(bar_status_command, const char *command) {
591  FREE(current_bar->status_command);
592  current_bar->status_command = sstrdup(command);
593 }
594 
595 CFGFUN(bar_binding_mode_indicator, const char *value) {
596  current_bar->hide_binding_mode_indicator = !eval_boolstr(value);
597 }
598 
599 CFGFUN(bar_workspace_buttons, const char *value) {
600  current_bar->hide_workspace_buttons = !eval_boolstr(value);
601 }
602 
603 CFGFUN(bar_strip_workspace_numbers, const char *value) {
604  current_bar->strip_workspace_numbers = eval_boolstr(value);
605 }
606 
607 CFGFUN(bar_start) {
608  current_bar = scalloc(1, sizeof(struct Barconfig));
609  TAILQ_INIT(&(current_bar->bar_bindings));
610  TAILQ_INIT(&(current_bar->tray_outputs));
611  current_bar->tray_padding = 2;
612  current_bar->modifier = M_MOD4;
613 }
614 
615 CFGFUN(bar_finish) {
616  DLOG("\t new bar configuration finished, saving.\n");
617  /* Generate a unique ID for this bar if not already configured */
618  if (current_bar->id == NULL)
619  sasprintf(&current_bar->id, "bar-%d", config.number_barconfigs);
620 
622 
623  /* If no font was explicitly set, we use the i3 font as default */
624  if (current_bar->font == NULL && font_pattern != NULL)
625  current_bar->font = sstrdup(font_pattern);
626 
627  TAILQ_INSERT_TAIL(&barconfigs, current_bar, configs);
628  /* Simply reset the pointer, but don't free the resources. */
629  current_bar = NULL;
630 }
char * output
Definition: config.h:372
static bool eval_boolstr(const char *str)
void * srealloc(void *ptr, size_t size)
Safe-wrapper around realloc which exits if realloc returns NULL (meaning that there is no more memory...
enum Barconfig::@10 modifier
Bar modifier (to show bar when in hide mode).
bool workspace_auto_back_and_forth
Automatic workspace back and forth switching.
Definition: config.h:163
char * workspace
Definition: data.h:546
bool show_marks
Specifies whether or not marks should be displayed in the window decoration.
Definition: config.h:186
int default_orientation
Default orientation for new containers.
Definition: config.h:106
struct assignments_head assignments
Definition: main.c:82
char * restart_state_path
Definition: config.h:97
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...
struct outputs_head outputs
Definition: randr.c:28
Match match
the criteria to check if a window matches
Definition: data.h:541
struct autostarts_head autostarts
Definition: main.c:76
Defines a mouse command to be executed instead of the default behavior when clicking on the non-statu...
Definition: config.h:361
char * socket_path
Path to the i3 IPC socket.
Definition: config.h:263
enum Barconfig::@8 mode
Bar display mode (hide unless modifier is pressed or show in dock mode or always hide in invisible mo...
border_style_t default_border
The default border style for new windows.
Definition: config.h:189
struct barconfig_head barconfigs
Definition: config.c:19
int32_t floating_maximum_width
Maximum and minimum dimensions of a floating window.
Definition: config.h:199
Definition: data.h:72
enum Config::@7 popup_during_fullscreen
What should happen when a new popup is opened during fullscreen mode.
int num_outputs
Number of outputs in the outputs array.
Definition: config.h:247
char * sstrdup(const char *str)
Safe-wrapper around strdup which exits if malloc returns NULL (meaning that there is no more memory a...
#define DLOG(fmt,...)
Definition: libi3.h:98
struct bindings_head * bindings
Definition: main.c:73
struct autostarts_always_head autostarts_always
Definition: main.c:79
color_t draw_util_hex_to_color(const char *color)
Parses the given color in hex format to an internal color representation.
const char * DEFAULT_BINDING_MODE
The name of the default mode.
Definition: bindings.c:23
Definition: data.h:59
An Assignment makes specific windows go to a specific workspace/output or run a command for that wind...
Definition: data.h:521
void match_free(Match *match)
Frees the given match.
Definition: match.c:254
void match_copy(Match *dest, Match *src)
Copies the data of a match from src to dest.
Definition: match.c:64
char * id
Automatically generated ID for this bar config.
Definition: config.h:244
#define TAILQ_INIT(head)
Definition: queue.h:360
#define FREE(pointer)
Definition: util.h:48
char * focused_separator
Definition: config.h:330
Definition: data.h:60
Stores which workspace (by name or number) goes to which output.
Definition: data.h:208
struct Barconfig::bar_colors colors
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
int tray_padding
Definition: config.h:258
color_t background
Definition: config.h:206
char * i3bar_command
Command that should be run to execute i3bar, give a full path if i3bar is not in your $PATH...
Definition: config.h:295
CFGFUN(criteria_init, int _state)
int32_t floating_minimum_height
Definition: config.h:202
char * separator_symbol
A custom separator to use instead of a vertical line.
Definition: config.h:305
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...
enum Assignment::@18 type
type of this assignment:
uint32_t floating_modifier
The modifier which needs to be pressed in combination with your mouse buttons to do things with float...
Definition: config.h:196
bool pango_markup
Definition: config.h:81
int default_floating_border_width
Definition: config.h:103
char * command
Definition: data.h:545
static int criteria_next_state
i3Font font
Definition: config.h:94
int number_barconfigs
Definition: config.h:233
struct ws_assignments_head ws_assignments
Definition: main.c:86
Holds a command specified by either an:
Definition: data.h:330
uint32_t width
Definition: data.h:122
char * status_command
Command that should be run to get a statusline, for example &#39;i3status&#39;.
Definition: config.h:299
char * font
Font specification for all text rendered on the bar.
Definition: config.h:302
bool hide_binding_mode_indicator
Hide mode button? Configuration option is &#39;binding_mode_indicator no&#39; but we invert the bool for the ...
Definition: config.h:318
char * command
The command which is to be executed for this button.
Definition: config.h:366
#define TAILQ_INSERT_TAIL(head, elm, field)
Definition: queue.h:376
border_style_t default_floating_border
The default border style for new floating windows.
Definition: config.h:192
i3Font load_font(const char *pattern, const bool fallback)
Loads a font for usage, also getting its height.
char * focused_background
Definition: config.h:328
static void bar_configure_binding(const char *button, const char *command)
layout_t default_layout
Definition: config.h:99
char * ipc_socket_path
Definition: config.h:96
enum Barconfig::@11 position
Bar position (bottom by default).
int default_border_width
Definition: config.h:102
static char * font_pattern
bool force_xinerama
By default, use the RandR API for multi-monitor setups.
Definition: config.h:154
void workspace_back_and_forth(void)
Focuses the previously focused workspace.
Definition: workspace.c:751
int32_t floating_maximum_height
Definition: config.h:200
Definition: data.h:61
void match_init(Match *match)
Definition: match.c:28
bool force_focus_wrapping
Think of the following layout: Horizontal workspace with a tabbed con on the left of the screen and a...
Definition: config.h:144
static char * current_mode
int32_t floating_minimum_width
Definition: config.h:201
union Assignment::@19 dest
destination workspace/command, depending on the type
float workspace_urgency_timer
By default, urgency is cleared immediately when switching to another workspace leads to focusing the ...
Definition: config.h:170
warping_t mouse_warping
By default, when switching focus to a window on a different output (e.g.
Definition: config.h:122
char * fake_outputs
Overwrites output detection (for testing), see src/fake_outputs.c.
Definition: config.h:157
static bool current_mode_pango_markup
Definition: data.h:62
struct Config::config_client client[QUBE_NUM_LABELS]
char * focused_statusline
Definition: config.h:329
uint32_t height
Definition: data.h:123
bool disable_focus_follows_mouse
By default, focus follows mouse.
Definition: config.h:112
int logical_px(const int logical)
Convert a logical amount of pixels (e.g.
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...
Definition: data.h:85
adjacent_t hide_edge_borders
Remove borders if they are adjacent to the screen edge.
Definition: config.h:128
char * command
Command, like in command mode.
Definition: data.h:332
static bool verbose
Definition: log.c:36
Definition: data.h:63
qube_label_t
Qubes colors.
Definition: data.h:132
enum Config::@6 focus_on_window_activation
Behavior when a window sends a NET_ACTIVE_WINDOW message.
static Match current_match
bool match_is_empty(Match *match)
Check if a match is empty.
Definition: match.c:41
bool verbose
Enable verbose mode? Useful for debugging purposes.
Definition: config.h:321
Definition: data.h:87
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:119
char ** outputs
Outputs on which this bar should show up on.
Definition: config.h:250
Definition: data.h:134
Definition: data.h:86
void set_font(i3Font *font)
Defines the font to be used for the forthcoming calls.
bool hide_workspace_buttons
Hide workspace buttons? Configuration option is &#39;workspace_buttons no&#39; but we invert the bool to get ...
Definition: config.h:310
Config config
Definition: config.c:17
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 *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:56
bool strip_workspace_numbers
Strip workspace numbers? Configuration option is &#39;strip_workspace_numbers yes&#39;.
Definition: config.h:314
enum Barconfig::@9 hidden_state
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:269
static Barconfig * current_bar
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:347
#define APPLY_COLORS(classname, label)
#define ELOG(fmt,...)
Definition: libi3.h:93
int input_code
The button to be used (e.g., 1 for "button1").
Definition: config.h:363
Con * focused
Definition: tree.c:15
Holds the status bar configuration (i3bar).
Definition: config.h:241