i3
commands.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  * commands.c: all command functions (see commands_parser.c)
8  *
9  */
10 #include "all.h"
11 #include "shmlog.h"
12 
13 #include <fcntl.h>
14 #include <stdint.h>
15 #include <unistd.h>
16 
17 // Macros to make the YAJL API a bit easier to use.
18 #define y(x, ...) (cmd_output->json_gen != NULL ? yajl_gen_##x(cmd_output->json_gen, ##__VA_ARGS__) : 0)
19 #define ystr(str) (cmd_output->json_gen != NULL ? yajl_gen_string(cmd_output->json_gen, (unsigned char *)str, strlen(str)) : 0)
20 #define ysuccess(success) \
21  do { \
22  if (cmd_output->json_gen != NULL) { \
23  y(map_open); \
24  ystr("success"); \
25  y(bool, success); \
26  y(map_close); \
27  } \
28  } while (0)
29 #define yerror(format, ...) \
30  do { \
31  if (cmd_output->json_gen != NULL) { \
32  char *message; \
33  sasprintf(&message, format, ##__VA_ARGS__); \
34  y(map_open); \
35  ystr("success"); \
36  y(bool, false); \
37  ystr("error"); \
38  ystr(message); \
39  y(map_close); \
40  free(message); \
41  } \
42  } while (0)
43 
46 #define HANDLE_INVALID_MATCH \
47  do { \
48  if (current_match->error != NULL) { \
49  yerror("Invalid match: %s", current_match->error); \
50  return; \
51  } \
52  } while (0)
53 
59 #define HANDLE_EMPTY_MATCH \
60  do { \
61  HANDLE_INVALID_MATCH; \
62  \
63  if (match_is_empty(current_match)) { \
64  while (!TAILQ_EMPTY(&owindows)) { \
65  owindow *ow = TAILQ_FIRST(&owindows); \
66  TAILQ_REMOVE(&owindows, ow, owindows); \
67  free(ow); \
68  } \
69  owindow *ow = smalloc(sizeof(owindow)); \
70  ow->con = focused; \
71  TAILQ_INIT(&owindows); \
72  TAILQ_INSERT_TAIL(&owindows, ow, owindows); \
73  } \
74  } while (0)
75 
76 /*
77  * Checks whether we switched to a new workspace and returns false in that case,
78  * signaling that further workspace switching should be done by the calling function
79  * If not, calls workspace_back_and_forth() if workspace_auto_back_and_forth is set
80  * and return true, signaling that no further workspace switching should occur in the calling function.
81  *
82  */
83 static bool maybe_back_and_forth(struct CommandResultIR *cmd_output, const char *name) {
85 
86  /* If we switched to a different workspace, do nothing */
87  if (strcmp(ws->name, name) != 0)
88  return false;
89 
90  DLOG("This workspace is already focused.\n");
93  cmd_output->needs_tree_render = true;
94  }
95  return true;
96 }
97 
98 /*
99  * Return the passed workspace unless it is the current one and auto back and
100  * forth is enabled, in which case the back_and_forth workspace is returned.
101  */
103  Con *current, *baf;
104 
106  return workspace;
107 
108  current = con_get_workspace(focused);
109 
110  if (current == workspace) {
112  if (baf != NULL) {
113  DLOG("Substituting workspace with back_and_forth, as it is focused.\n");
114  return baf;
115  }
116  }
117 
118  return workspace;
119 }
120 
121 /*******************************************************************************
122  * Criteria functions.
123  ******************************************************************************/
124 
125 /*
126  * Helper data structure for an operation window (window on which the operation
127  * will be performed). Used to build the TAILQ owindows.
128  *
129  */
130 typedef struct owindow {
132  TAILQ_ENTRY(owindow) owindows;
134 
135 typedef TAILQ_HEAD(owindows_head, owindow) owindows_head;
136 
137 static owindows_head owindows;
138 
139 /*
140  * Initializes the specified 'Match' data structure and the initial state of
141  * commands.c for matching target windows of a command.
142  *
143  */
145  Con *con;
146  owindow *ow;
147 
148  DLOG("Initializing criteria, current_match = %p\n", current_match);
151  while (!TAILQ_EMPTY(&owindows)) {
152  ow = TAILQ_FIRST(&owindows);
153  TAILQ_REMOVE(&owindows, ow, owindows);
154  free(ow);
155  }
156  TAILQ_INIT(&owindows);
157  /* copy all_cons */
158  TAILQ_FOREACH (con, &all_cons, all_cons) {
159  ow = smalloc(sizeof(owindow));
160  ow->con = con;
161  TAILQ_INSERT_TAIL(&owindows, ow, owindows);
162  }
163 }
164 
165 /*
166  * A match specification just finished (the closing square bracket was found),
167  * so we filter the list of owindows.
168  *
169  */
171  owindow *next, *current;
172 
173  DLOG("match specification finished, matching...\n");
174  /* copy the old list head to iterate through it and start with a fresh
175  * list which will contain only matching windows */
176  struct owindows_head old = owindows;
177  TAILQ_INIT(&owindows);
178  for (next = TAILQ_FIRST(&old); next != TAILQ_END(&old);) {
179  /* make a copy of the next pointer and advance the pointer to the
180  * next element as we are going to invalidate the element’s
181  * next/prev pointers by calling TAILQ_INSERT_TAIL later */
182  current = next;
183  next = TAILQ_NEXT(next, owindows);
184 
185  DLOG("checking if con %p / %s matches\n", current->con, current->con->name);
186 
187  /* We use this flag to prevent matching on window-less containers if
188  * only window-specific criteria were specified. */
189  bool accept_match = false;
190 
191  if (current_match->con_id != NULL) {
192  accept_match = true;
193 
194  if (current_match->con_id == current->con) {
195  DLOG("con_id matched.\n");
196  } else {
197  DLOG("con_id does not match.\n");
198  FREE(current);
199  continue;
200  }
201  }
202 
203  if (current_match->mark != NULL && !TAILQ_EMPTY(&(current->con->marks_head))) {
204  accept_match = true;
205  bool matched_by_mark = false;
206 
207  mark_t *mark;
208  TAILQ_FOREACH (mark, &(current->con->marks_head), marks) {
209  if (!regex_matches(current_match->mark, mark->name))
210  continue;
211 
212  DLOG("match by mark\n");
213  matched_by_mark = true;
214  break;
215  }
216 
217  if (!matched_by_mark) {
218  DLOG("mark does not match.\n");
219  FREE(current);
220  continue;
221  }
222  }
223 
224  if (current->con->window != NULL) {
225  if (match_matches_window(current_match, current->con->window)) {
226  DLOG("matches window!\n");
227  accept_match = true;
228  } else {
229  DLOG("doesn't match\n");
230  FREE(current);
231  continue;
232  }
233  }
234 
235  if (accept_match) {
236  TAILQ_INSERT_TAIL(&owindows, current, owindows);
237  } else {
238  FREE(current);
239  continue;
240  }
241  }
242 
243  TAILQ_FOREACH (current, &owindows, owindows) {
244  DLOG("matching: %p / %s\n", current->con, current->con->name);
245  }
246 }
247 
248 /*
249  * Interprets a ctype=cvalue pair and adds it to the current match
250  * specification.
251  *
252  */
253 void cmd_criteria_add(I3_CMD, const char *ctype, const char *cvalue) {
254  match_parse_property(current_match, ctype, cvalue);
255 }
256 
257 static void move_matches_to_workspace(Con *ws) {
258  owindow *current;
259  TAILQ_FOREACH (current, &owindows, owindows) {
260  DLOG("matching: %p / %s\n", current->con, current->con->name);
261  con_move_to_workspace(current->con, ws, true, false, false);
262  }
263 }
264 
265 #define CHECK_MOVE_CON_TO_WORKSPACE \
266  do { \
267  HANDLE_EMPTY_MATCH; \
268  if (TAILQ_EMPTY(&owindows)) { \
269  yerror("Nothing to move: specified criteria don't match any window"); \
270  return; \
271  } else { \
272  bool found = false; \
273  owindow *current = TAILQ_FIRST(&owindows); \
274  while (current) { \
275  owindow *next = TAILQ_NEXT(current, owindows); \
276  \
277  if (current->con->type == CT_WORKSPACE && !con_has_children(current->con)) { \
278  TAILQ_REMOVE(&owindows, current, owindows); \
279  } else { \
280  found = true; \
281  } \
282  \
283  current = next; \
284  } \
285  if (!found) { \
286  yerror("Nothing to move: workspace empty"); \
287  return; \
288  } \
289  } \
290  } while (0)
291 
292 /*
293  * Implementation of 'move [window|container] [to] workspace
294  * next|prev|next_on_output|prev_on_output|current'.
295  *
296  */
297 void cmd_move_con_to_workspace(I3_CMD, const char *which) {
298  DLOG("which=%s\n", which);
299 
301 
302  /* get the workspace */
303  Con *ws;
304  if (strcmp(which, "next") == 0)
305  ws = workspace_next();
306  else if (strcmp(which, "prev") == 0)
307  ws = workspace_prev();
308  else if (strcmp(which, "next_on_output") == 0)
310  else if (strcmp(which, "prev_on_output") == 0)
312  else if (strcmp(which, "current") == 0)
314  else {
315  yerror("BUG: called with which=%s", which);
316  return;
317  }
318 
320 
321  cmd_output->needs_tree_render = true;
322  // XXX: default reply for now, make this a better reply
323  ysuccess(true);
324 }
325 
326 /*
327  * Implementation of 'move [window|container] [to] workspace back_and_forth'.
328  *
329  */
332  if (ws == NULL) {
333  yerror("No workspace was previously active.");
334  return;
335  }
336 
338 
340 
341  cmd_output->needs_tree_render = true;
342  // XXX: default reply for now, make this a better reply
343  ysuccess(true);
344 }
345 
346 /*
347  * Implementation of 'move [--no-auto-back-and-forth] [window|container] [to] workspace <name>'.
348  *
349  */
350 void cmd_move_con_to_workspace_name(I3_CMD, const char *name, const char *no_auto_back_and_forth) {
351  if (strncasecmp(name, "__", strlen("__")) == 0) {
352  yerror("You cannot move containers to i3-internal workspaces (\"%s\").", name);
353  return;
354  }
355 
357 
358  LOG("should move window to workspace %s\n", name);
359  /* get the workspace */
360  Con *ws = workspace_get(name);
361 
362  if (no_auto_back_and_forth == NULL) {
364  }
365 
367 
368  cmd_output->needs_tree_render = true;
369  // XXX: default reply for now, make this a better reply
370  ysuccess(true);
371 }
372 
373 /*
374  * Implementation of 'move [--no-auto-back-and-forth] [window|container] [to] workspace number <name>'.
375  *
376  */
377 void cmd_move_con_to_workspace_number(I3_CMD, const char *which, const char *no_auto_back_and_forth) {
379 
380  LOG("should move window to workspace %s\n", which);
381 
382  long parsed_num = ws_name_to_number(which);
383  if (parsed_num == -1) {
384  LOG("Could not parse initial part of \"%s\" as a number.\n", which);
385  yerror("Could not parse number \"%s\"", which);
386  return;
387  }
388 
389  Con *ws = get_existing_workspace_by_num(parsed_num);
390  if (!ws) {
391  ws = workspace_get(which);
392  }
393 
394  if (no_auto_back_and_forth == NULL) {
396  }
397 
399 
400  cmd_output->needs_tree_render = true;
401  // XXX: default reply for now, make this a better reply
402  ysuccess(true);
403 }
404 
405 /*
406  * Convert a string direction ("left", "right", etc.) to a direction_t. Assumes
407  * valid direction string.
408  */
409 static direction_t parse_direction(const char *str) {
410  if (strcmp(str, "left") == 0) {
411  return D_LEFT;
412  } else if (strcmp(str, "right") == 0) {
413  return D_RIGHT;
414  } else if (strcmp(str, "up") == 0) {
415  return D_UP;
416  } else if (strcmp(str, "down") == 0) {
417  return D_DOWN;
418  } else {
419  ELOG("Invalid direction. This is a parser bug.\n");
420  assert(false);
421  }
422 }
423 
424 static void cmd_resize_floating(I3_CMD, const char *direction_str, Con *floating_con, int px) {
425  Rect old_rect = floating_con->rect;
426  Con *focused_con = con_descend_focused(floating_con);
427 
428  direction_t direction;
429  if (strcmp(direction_str, "height") == 0) {
430  direction = D_DOWN;
431  } else if (strcmp(direction_str, "width") == 0) {
432  direction = D_RIGHT;
433  } else {
434  direction = parse_direction(direction_str);
435  }
436  orientation_t orientation = orientation_from_direction(direction);
437 
438  /* ensure that resize will take place even if pixel increment is smaller than
439  * height increment or width increment.
440  * fixes #1011 */
441  const i3Window *window = focused_con->window;
442  if (window != NULL) {
443  if (orientation == VERT) {
444  if (px < 0) {
445  px = (-px < window->height_increment) ? -window->height_increment : px;
446  } else {
447  px = (px < window->height_increment) ? window->height_increment : px;
448  }
449  } else {
450  if (px < 0) {
451  px = (-px < window->width_increment) ? -window->width_increment : px;
452  } else {
453  px = (px < window->width_increment) ? window->width_increment : px;
454  }
455  }
456  }
457 
458  if (orientation == VERT) {
459  floating_con->rect.height += px;
460  } else {
461  floating_con->rect.width += px;
462  }
463  floating_check_size(floating_con, orientation == VERT);
464 
465  /* Did we actually resize anything or did the size constraints prevent us?
466  * If we could not resize, exit now to not move the window. */
467  if (rect_equals(old_rect, floating_con->rect)) {
468  return;
469  }
470 
471  if (direction == D_UP) {
472  floating_con->rect.y -= (floating_con->rect.height - old_rect.height);
473  } else if (direction == D_LEFT) {
474  floating_con->rect.x -= (floating_con->rect.width - old_rect.width);
475  }
476 
477  /* If this is a scratchpad window, don't auto center it from now on. */
478  if (floating_con->scratchpad_state == SCRATCHPAD_FRESH) {
479  floating_con->scratchpad_state = SCRATCHPAD_CHANGED;
480  }
481 }
482 
483 static bool cmd_resize_tiling_direction(I3_CMD, Con *current, const char *direction, int px, int ppt) {
484  Con *second = NULL;
485  Con *first = current;
486  direction_t search_direction = parse_direction(direction);
487 
488  bool res = resize_find_tiling_participants(&first, &second, search_direction, false);
489  if (!res) {
490  yerror("No second container found in this direction.");
491  return false;
492  }
493 
494  if (ppt) {
495  /* For backwards compatibility, 'X px or Y ppt' means that ppt is
496  * preferred. */
497  px = 0;
498  }
499  return resize_neighboring_cons(first, second, px, ppt);
500 }
501 
502 static bool cmd_resize_tiling_width_height(I3_CMD, Con *current, const char *direction, int px, double ppt) {
503  LOG("width/height resize\n");
504 
505  /* get the appropriate current container (skip stacked/tabbed cons) */
506  Con *dummy = NULL;
507  direction_t search_direction = (strcmp(direction, "width") == 0 ? D_LEFT : D_DOWN);
508  bool search_result = resize_find_tiling_participants(&current, &dummy, search_direction, true);
509  if (search_result == false) {
510  yerror("Failed to find appropriate tiling containers for resize operation");
511  return false;
512  }
513 
514  /* get the default percentage */
515  int children = con_num_children(current->parent);
516  LOG("ins. %d children\n", children);
517  double percentage = 1.0 / children;
518  LOG("default percentage = %f\n", percentage);
519 
520  /* Ensure all the other children have a percentage set. */
521  Con *child;
522  TAILQ_FOREACH (child, &(current->parent->nodes_head), nodes) {
523  LOG("child->percent = %f (child %p)\n", child->percent, child);
524  if (child->percent == 0.0)
525  child->percent = percentage;
526  }
527 
528  double new_current_percent;
529  double subtract_percent;
530  if (ppt != 0.0) {
531  new_current_percent = current->percent + ppt;
532  } else {
533  /* Convert px change to change in percentages */
534  ppt = (double)px / (double)con_rect_size_in_orientation(current->parent);
535  new_current_percent = current->percent + ppt;
536  }
537  subtract_percent = ppt / (children - 1);
538  if (ppt < 0.0 && new_current_percent < percent_for_1px(current)) {
539  yerror("Not resizing, container would end with less than 1px");
540  return false;
541  }
542 
543  LOG("new_current_percent = %f\n", new_current_percent);
544  LOG("subtract_percent = %f\n", subtract_percent);
545  /* Ensure that the new percentages are positive. */
546  if (subtract_percent >= 0.0) {
547  TAILQ_FOREACH (child, &(current->parent->nodes_head), nodes) {
548  if (child == current) {
549  continue;
550  }
551  if (child->percent - subtract_percent < percent_for_1px(child)) {
552  yerror("Not resizing, already at minimum size (child %p would end up with a size of %.f", child, child->percent - subtract_percent);
553  return false;
554  }
555  }
556  }
557 
558  current->percent = new_current_percent;
559  LOG("current->percent after = %f\n", current->percent);
560 
561  TAILQ_FOREACH (child, &(current->parent->nodes_head), nodes) {
562  if (child == current)
563  continue;
564  child->percent -= subtract_percent;
565  LOG("child->percent after (%p) = %f\n", child, child->percent);
566  }
567 
568  return true;
569 }
570 
571 /*
572  * Implementation of 'resize grow|shrink <direction> [<px> px] [or <ppt> ppt]'.
573  *
574  */
575 void cmd_resize(I3_CMD, const char *way, const char *direction, long resize_px, long resize_ppt) {
576  DLOG("resizing in way %s, direction %s, px %ld or ppt %ld\n", way, direction, resize_px, resize_ppt);
577  if (strcmp(way, "shrink") == 0) {
578  resize_px *= -1;
579  resize_ppt *= -1;
580  }
581 
583 
584  owindow *current;
585  TAILQ_FOREACH (current, &owindows, owindows) {
586  /* Don't handle dock windows (issue #1201) */
587  if (current->con->window && current->con->window->dock) {
588  DLOG("This is a dock window. Not resizing (con = %p)\n)", current->con);
589  continue;
590  }
591 
592  Con *floating_con;
593  if ((floating_con = con_inside_floating(current->con))) {
594  cmd_resize_floating(current_match, cmd_output, direction, floating_con, resize_px);
595  } else {
596  if (strcmp(direction, "width") == 0 ||
597  strcmp(direction, "height") == 0) {
598  const double ppt = (double)resize_ppt / 100.0;
600  current->con, direction,
601  resize_px, ppt)) {
602  yerror("Cannot resize.");
603  return;
604  }
605  } else {
607  current->con, direction,
608  resize_px, resize_ppt)) {
609  yerror("Cannot resize.");
610  return;
611  }
612  }
613  }
614  }
615 
616  cmd_output->needs_tree_render = true;
617  // XXX: default reply for now, make this a better reply
618  ysuccess(true);
619 }
620 
621 static bool resize_set_tiling(I3_CMD, Con *target, orientation_t resize_orientation, bool is_ppt, long target_size) {
622  direction_t search_direction;
623  char *mode;
624  if (resize_orientation == HORIZ) {
625  search_direction = D_LEFT;
626  mode = "width";
627  } else {
628  search_direction = D_DOWN;
629  mode = "height";
630  }
631 
632  /* Get the appropriate current container (skip stacked/tabbed cons) */
633  Con *dummy;
634  resize_find_tiling_participants(&target, &dummy, search_direction, true);
635 
636  /* Calculate new size for the target container */
637  double ppt = 0.0;
638  int px = 0;
639  if (is_ppt) {
640  ppt = (double)target_size / 100.0 - target->percent;
641  } else {
642  px = target_size - (resize_orientation == HORIZ ? target->rect.width : target->rect.height);
643  }
644 
645  /* Perform resizing and report failure if not possible */
647  target, mode, px, ppt);
648 }
649 
650 /*
651  * Implementation of 'resize set <width> [px | ppt] <height> [px | ppt]'.
652  *
653  */
654 void cmd_resize_set(I3_CMD, long cwidth, const char *mode_width, long cheight, const char *mode_height) {
655  DLOG("resizing to %ld %s x %ld %s\n", cwidth, mode_width, cheight, mode_height);
656  if (cwidth < 0 || cheight < 0) {
657  yerror("Dimensions cannot be negative.");
658  return;
659  }
660 
662 
663  owindow *current;
664  bool success = true;
665  TAILQ_FOREACH (current, &owindows, owindows) {
666  Con *floating_con;
667  if ((floating_con = con_inside_floating(current->con))) {
668  Con *output = con_get_output(floating_con);
669  if (cwidth == 0) {
670  cwidth = floating_con->rect.width;
671  } else if (mode_width && strcmp(mode_width, "ppt") == 0) {
672  cwidth = output->rect.width * ((double)cwidth / 100.0);
673  }
674  if (cheight == 0) {
675  cheight = floating_con->rect.height;
676  } else if (mode_height && strcmp(mode_height, "ppt") == 0) {
677  cheight = output->rect.height * ((double)cheight / 100.0);
678  }
679  floating_resize(floating_con, cwidth, cheight);
680  } else {
681  if (current->con->window && current->con->window->dock) {
682  DLOG("This is a dock window. Not resizing (con = %p)\n)", current->con);
683  continue;
684  }
685 
686  if (cwidth > 0) {
687  bool is_ppt = mode_width && strcmp(mode_width, "ppt") == 0;
688  success &= resize_set_tiling(current_match, cmd_output, current->con,
689  HORIZ, is_ppt, cwidth);
690  }
691  if (cheight > 0) {
692  bool is_ppt = mode_height && strcmp(mode_height, "ppt") == 0;
693  success &= resize_set_tiling(current_match, cmd_output, current->con,
694  VERT, is_ppt, cheight);
695  }
696  }
697  }
698 
699  cmd_output->needs_tree_render = true;
700  ysuccess(success);
701 }
702 
703 static int border_width_from_style(border_style_t border_style, long border_width, Con *con) {
704  if (border_style == BS_NONE) {
705  return 0;
706  }
707  if (border_width >= 0) {
708  return logical_px(border_width);
709  }
710 
711  const bool is_floating = con_inside_floating(con) != NULL;
712  /* Load the configured defaults. */
713  if (is_floating && border_style == config.default_floating_border) {
715  } else if (!is_floating && border_style == config.default_border) {
717  } else {
718  /* Use some hardcoded values. */
719  return logical_px(border_style == BS_NORMAL ? 2 : 1);
720  }
721 }
722 
723 /*
724  * Implementation of 'border normal|pixel [<n>]', 'border none|1pixel|toggle'.
725  *
726  */
727 void cmd_border(I3_CMD, const char *border_style_str, long border_width) {
728  DLOG("border style should be changed to %s with border width %ld\n", border_style_str, border_width);
729  owindow *current;
730 
732 
733  TAILQ_FOREACH (current, &owindows, owindows) {
734  DLOG("matching: %p / %s\n", current->con, current->con->name);
735 
736  border_style_t border_style;
737  if (strcmp(border_style_str, "toggle") == 0) {
738  border_style = (current->con->border_style + 1) % 3;
739  } else if (strcmp(border_style_str, "normal") == 0) {
740  border_style = BS_NORMAL;
741  } else if (strcmp(border_style_str, "pixel") == 0) {
742  border_style = BS_PIXEL;
743  } else if (strcmp(border_style_str, "none") == 0) {
744  border_style = BS_NONE;
745  } else {
746  yerror("BUG: called with border_style=%s", border_style_str);
747  return;
748  }
749 
750  const int con_border_width = border_width_from_style(border_style, border_width, current->con);
751  con_set_border_style(current->con, border_style, con_border_width);
752  }
753 
754  cmd_output->needs_tree_render = true;
755  ysuccess(true);
756 }
757 
758 /*
759  * Implementation of 'nop <comment>'.
760  *
761  */
762 void cmd_nop(I3_CMD, const char *comment) {
763  LOG("-------------------------------------------------\n");
764  LOG(" NOP: %.4000s\n", comment);
765  LOG("-------------------------------------------------\n");
766  ysuccess(true);
767 }
768 
769 /*
770  * Implementation of 'append_layout <path>'.
771  *
772  */
773 void cmd_append_layout(I3_CMD, const char *cpath) {
774  LOG("Appending layout \"%s\"\n", cpath);
775 
776  /* Make sure we allow paths like '~/.i3/layout.json' */
777  char *path = resolve_tilde(cpath);
778 
779  char *buf = NULL;
780  ssize_t len;
781  if ((len = slurp(path, &buf)) < 0) {
782  yerror("Could not slurp \"%s\".", path);
783  /* slurp already logged an error. */
784  goto out;
785  }
786 
787  if (!json_validate(buf, len)) {
788  ELOG("Could not parse \"%s\" as JSON, not loading.\n", path);
789  yerror("Could not parse \"%s\" as JSON.", path);
790  goto out;
791  }
792 
793  json_content_t content = json_determine_content(buf, len);
794  LOG("JSON content = %d\n", content);
795  if (content == JSON_CONTENT_UNKNOWN) {
796  ELOG("Could not determine the contents of \"%s\", not loading.\n", path);
797  yerror("Could not determine the contents of \"%s\".", path);
798  goto out;
799  }
800 
801  Con *parent = focused;
802  if (content == JSON_CONTENT_WORKSPACE) {
803  parent = output_get_content(con_get_output(parent));
804  } else {
805  /* We need to append the layout to a split container, since a leaf
806  * container must not have any children (by definition).
807  * Note that we explicitly check for workspaces, since they are okay for
808  * this purpose, but con_accepts_window() returns false for workspaces. */
809  while (parent->type != CT_WORKSPACE && !con_accepts_window(parent))
810  parent = parent->parent;
811  }
812  DLOG("Appending to parent=%p instead of focused=%p\n", parent, focused);
813  char *errormsg = NULL;
814  tree_append_json(parent, buf, len, &errormsg);
815  if (errormsg != NULL) {
816  yerror(errormsg);
817  free(errormsg);
818  /* Note that we continue executing since tree_append_json() has
819  * side-effects — user-provided layouts can be partly valid, partly
820  * invalid, leading to half of the placeholder containers being
821  * created. */
822  } else {
823  ysuccess(true);
824  }
825 
826  // XXX: This is a bit of a kludge. Theoretically, render_con(parent,
827  // false); should be enough, but when sending 'workspace 4; append_layout
828  // /tmp/foo.json', the needs_tree_render == true of the workspace command
829  // is not executed yet and will be batched with append_layout’s
830  // needs_tree_render after the parser finished. We should check if that is
831  // necessary at all.
832  render_con(croot);
833 
835 
836  if (content == JSON_CONTENT_WORKSPACE)
837  ipc_send_workspace_event("restored", parent, NULL);
838 
839  cmd_output->needs_tree_render = true;
840 out:
841  free(path);
842  free(buf);
843 }
844 
845 /*
846  * Implementation of 'workspace next|prev|next_on_output|prev_on_output'.
847  *
848  */
849 void cmd_workspace(I3_CMD, const char *which) {
850  Con *ws;
851 
852  DLOG("which=%s\n", which);
853 
855  yerror("Cannot switch workspace while in global fullscreen");
856  return;
857  }
858 
859  if (strcmp(which, "next") == 0)
860  ws = workspace_next();
861  else if (strcmp(which, "prev") == 0)
862  ws = workspace_prev();
863  else if (strcmp(which, "next_on_output") == 0)
865  else if (strcmp(which, "prev_on_output") == 0)
867  else {
868  yerror("BUG: called with which=%s", which);
869  return;
870  }
871 
872  workspace_show(ws);
873 
874  cmd_output->needs_tree_render = true;
875  // XXX: default reply for now, make this a better reply
876  ysuccess(true);
877 }
878 
879 /*
880  * Implementation of 'workspace [--no-auto-back-and-forth] number <name>'
881  *
882  */
883 void cmd_workspace_number(I3_CMD, const char *which, const char *_no_auto_back_and_forth) {
884  const bool no_auto_back_and_forth = (_no_auto_back_and_forth != NULL);
885 
887  yerror("Cannot switch workspace while in global fullscreen");
888  return;
889  }
890 
891  long parsed_num = ws_name_to_number(which);
892  if (parsed_num == -1) {
893  yerror("Could not parse initial part of \"%s\" as a number.", which);
894  return;
895  }
896 
897  Con *workspace = get_existing_workspace_by_num(parsed_num);
898  if (!workspace) {
899  LOG("There is no workspace with number %ld, creating a new one.\n", parsed_num);
900  ysuccess(true);
901  workspace_show_by_name(which);
902  cmd_output->needs_tree_render = true;
903  return;
904  }
905  if (!no_auto_back_and_forth && maybe_back_and_forth(cmd_output, workspace->name)) {
906  ysuccess(true);
907  return;
908  }
909  workspace_show(workspace);
910 
911  cmd_output->needs_tree_render = true;
912  // XXX: default reply for now, make this a better reply
913  ysuccess(true);
914 }
915 
916 /*
917  * Implementation of 'workspace back_and_forth'.
918  *
919  */
922  yerror("Cannot switch workspace while in global fullscreen");
923  return;
924  }
925 
927 
928  cmd_output->needs_tree_render = true;
929  // XXX: default reply for now, make this a better reply
930  ysuccess(true);
931 }
932 
933 /*
934  * Implementation of 'workspace [--no-auto-back-and-forth] <name>'
935  *
936  */
937 void cmd_workspace_name(I3_CMD, const char *name, const char *_no_auto_back_and_forth) {
938  const bool no_auto_back_and_forth = (_no_auto_back_and_forth != NULL);
939 
940  if (strncasecmp(name, "__", strlen("__")) == 0) {
941  yerror("You cannot switch to the i3-internal workspaces (\"%s\").", name);
942  return;
943  }
944 
946  yerror("Cannot switch workspace while in global fullscreen");
947  return;
948  }
949 
950  DLOG("should switch to workspace %s\n", name);
951  if (!no_auto_back_and_forth && maybe_back_and_forth(cmd_output, name)) {
952  ysuccess(true);
953  return;
954  }
956 
957  cmd_output->needs_tree_render = true;
958  // XXX: default reply for now, make this a better reply
959  ysuccess(true);
960 }
961 
962 /*
963  * Implementation of 'mark [--add|--replace] [--toggle] <mark>'
964  *
965  */
966 void cmd_mark(I3_CMD, const char *mark, const char *mode, const char *toggle) {
968 
969  owindow *current = TAILQ_FIRST(&owindows);
970  if (current == NULL) {
971  yerror("Given criteria don't match a window");
972  return;
973  }
974 
975  /* Marks must be unique, i.e., no two windows must have the same mark. */
976  if (current != TAILQ_LAST(&owindows, owindows_head)) {
977  yerror("A mark must not be put onto more than one window");
978  return;
979  }
980 
981  DLOG("matching: %p / %s\n", current->con, current->con->name);
982 
983  mark_mode_t mark_mode = (mode == NULL || strcmp(mode, "--replace") == 0) ? MM_REPLACE : MM_ADD;
984  if (toggle != NULL) {
985  con_mark_toggle(current->con, mark, mark_mode);
986  } else {
987  con_mark(current->con, mark, mark_mode);
988  }
989 
990  cmd_output->needs_tree_render = true;
991  // XXX: default reply for now, make this a better reply
992  ysuccess(true);
993 }
994 
995 /*
996  * Implementation of 'unmark [mark]'
997  *
998  */
999 void cmd_unmark(I3_CMD, const char *mark) {
1001  con_unmark(NULL, mark);
1002  } else {
1003  owindow *current;
1004  TAILQ_FOREACH (current, &owindows, owindows) {
1005  con_unmark(current->con, mark);
1006  }
1007  }
1008 
1009  cmd_output->needs_tree_render = true;
1010  // XXX: default reply for now, make this a better reply
1011  ysuccess(true);
1012 }
1013 
1014 /*
1015  * Implementation of 'mode <string>'.
1016  *
1017  */
1018 void cmd_mode(I3_CMD, const char *mode) {
1019  DLOG("mode=%s\n", mode);
1020  switch_mode(mode);
1021 
1022  // XXX: default reply for now, make this a better reply
1023  ysuccess(true);
1024 }
1025 
1026 /*
1027  * Implementation of 'move [window|container] [to] output <str>'.
1028  *
1029  */
1030 void cmd_move_con_to_output(I3_CMD, const char *name) {
1031  DLOG("Should move window to output \"%s\".\n", name);
1033 
1034  owindow *current;
1035  bool had_error = false;
1036  TAILQ_FOREACH (current, &owindows, owindows) {
1037  DLOG("matching: %p / %s\n", current->con, current->con->name);
1038 
1039  had_error |= !con_move_to_output_name(current->con, name, true);
1040  }
1041 
1042  cmd_output->needs_tree_render = true;
1043  ysuccess(!had_error);
1044 }
1045 
1046 /*
1047  * Implementation of 'move [container|window] [to] mark <str>'.
1048  *
1049  */
1050 void cmd_move_con_to_mark(I3_CMD, const char *mark) {
1051  DLOG("moving window to mark \"%s\"\n", mark);
1052 
1054 
1055  bool result = true;
1056  owindow *current;
1057  TAILQ_FOREACH (current, &owindows, owindows) {
1058  DLOG("moving matched window %p / %s to mark \"%s\"\n", current->con, current->con->name, mark);
1059  result &= con_move_to_mark(current->con, mark);
1060  }
1061 
1062  cmd_output->needs_tree_render = true;
1063  ysuccess(result);
1064 }
1065 
1066 /*
1067  * Implementation of 'floating enable|disable|toggle'
1068  *
1069  */
1070 void cmd_floating(I3_CMD, const char *floating_mode) {
1071  owindow *current;
1072 
1073  DLOG("floating_mode=%s\n", floating_mode);
1074 
1076 
1077  TAILQ_FOREACH (current, &owindows, owindows) {
1078  DLOG("matching: %p / %s\n", current->con, current->con->name);
1079  if (strcmp(floating_mode, "toggle") == 0) {
1080  DLOG("should toggle mode\n");
1081  toggle_floating_mode(current->con, false);
1082  } else {
1083  DLOG("should switch mode to %s\n", floating_mode);
1084  if (strcmp(floating_mode, "enable") == 0) {
1085  floating_enable(current->con, false);
1086  } else {
1087  floating_disable(current->con);
1088  }
1089  }
1090  }
1091 
1092  cmd_output->needs_tree_render = true;
1093  // XXX: default reply for now, make this a better reply
1094  ysuccess(true);
1095 }
1096 
1097 /*
1098  * Implementation of 'move workspace to [output] <str>'.
1099  *
1100  */
1101 void cmd_move_workspace_to_output(I3_CMD, const char *name) {
1102  DLOG("should move workspace to output %s\n", name);
1103 
1105 
1106  owindow *current;
1107  TAILQ_FOREACH (current, &owindows, owindows) {
1108  Con *ws = con_get_workspace(current->con);
1109  if (con_is_internal(ws)) {
1110  continue;
1111  }
1112 
1113  Output *current_output = get_output_for_con(ws);
1114  Output *target_output = get_output_from_string(current_output, name);
1115  if (!target_output) {
1116  yerror("Could not get output from string \"%s\"", name);
1117  return;
1118  }
1119 
1120  workspace_move_to_output(ws, target_output);
1121  }
1122 
1123  cmd_output->needs_tree_render = true;
1124  ysuccess(true);
1125 }
1126 
1127 /*
1128  * Implementation of 'split v|h|t|vertical|horizontal|toggle'.
1129  *
1130  */
1131 void cmd_split(I3_CMD, const char *direction) {
1133 
1134  owindow *current;
1135  LOG("splitting in direction %c\n", direction[0]);
1136  TAILQ_FOREACH (current, &owindows, owindows) {
1137  if (con_is_docked(current->con)) {
1138  ELOG("Cannot split a docked container, skipping.\n");
1139  continue;
1140  }
1141 
1142  DLOG("matching: %p / %s\n", current->con, current->con->name);
1143  if (direction[0] == 't') {
1144  layout_t current_layout;
1145  if (current->con->type == CT_WORKSPACE) {
1146  current_layout = current->con->layout;
1147  } else {
1148  current_layout = current->con->parent->layout;
1149  }
1150  /* toggling split orientation */
1151  if (current_layout == L_SPLITH) {
1152  tree_split(current->con, VERT);
1153  } else {
1154  tree_split(current->con, HORIZ);
1155  }
1156  } else {
1157  tree_split(current->con, (direction[0] == 'v' ? VERT : HORIZ));
1158  }
1159  }
1160 
1161  cmd_output->needs_tree_render = true;
1162  // XXX: default reply for now, make this a better reply
1163  ysuccess(true);
1164 }
1165 
1166 /*
1167  * Implementation of 'kill [window|client]'.
1168  *
1169  */
1170 void cmd_kill(I3_CMD, const char *kill_mode_str) {
1171  if (kill_mode_str == NULL)
1172  kill_mode_str = "window";
1173 
1174  DLOG("kill_mode=%s\n", kill_mode_str);
1175 
1176  int kill_mode;
1177  if (strcmp(kill_mode_str, "window") == 0)
1178  kill_mode = KILL_WINDOW;
1179  else if (strcmp(kill_mode_str, "client") == 0)
1180  kill_mode = KILL_CLIENT;
1181  else {
1182  yerror("BUG: called with kill_mode=%s", kill_mode_str);
1183  return;
1184  }
1185 
1187 
1188  owindow *current;
1189  TAILQ_FOREACH (current, &owindows, owindows) {
1190  con_close(current->con, kill_mode);
1191  }
1192 
1193  cmd_output->needs_tree_render = true;
1194  // XXX: default reply for now, make this a better reply
1195  ysuccess(true);
1196 }
1197 
1198 /*
1199  * Implementation of 'exec [--no-startup-id] <command>'.
1200  *
1201  */
1202 void cmd_exec(I3_CMD, const char *nosn, const char *command) {
1203  bool no_startup_id = (nosn != NULL);
1204 
1206 
1207  int count = 0;
1208  owindow *current;
1209  TAILQ_FOREACH (current, &owindows, owindows) {
1210  count++;
1211  }
1212 
1213  if (count > 1) {
1214  LOG("WARNING: Your criteria for the exec command match %d containers, "
1215  "so the command will execute this many times.\n",
1216  count);
1217  }
1218 
1219  TAILQ_FOREACH (current, &owindows, owindows) {
1220  DLOG("should execute %s, no_startup_id = %d\n", command, no_startup_id);
1221  start_application(command, no_startup_id);
1222  }
1223 
1224  ysuccess(true);
1225 }
1226 
1227 #define CMD_FOCUS_WARN_CHILDREN \
1228  do { \
1229  int count = 0; \
1230  owindow *current; \
1231  TAILQ_FOREACH (current, &owindows, owindows) { \
1232  count++; \
1233  } \
1234  \
1235  if (count > 1) { \
1236  LOG("WARNING: Your criteria for the focus command matches %d containers, " \
1237  "while only exactly one container can be focused at a time.\n", \
1238  count); \
1239  } \
1240  } while (0)
1241 
1242 /*
1243  * Implementation of 'focus left|right|up|down|next|prev'.
1244  *
1245  */
1246 void cmd_focus_direction(I3_CMD, const char *direction_str) {
1249 
1250  direction_t direction;
1251  position_t position;
1252  bool auto_direction = true;
1253  if (strcmp(direction_str, "prev") == 0) {
1254  position = BEFORE;
1255  } else if (strcmp(direction_str, "next") == 0) {
1256  position = AFTER;
1257  } else {
1258  auto_direction = false;
1259  direction = parse_direction(direction_str);
1260  }
1261 
1262  owindow *current;
1263  TAILQ_FOREACH (current, &owindows, owindows) {
1264  Con *ws = con_get_workspace(current->con);
1265  if (!ws || con_is_internal(ws)) {
1266  continue;
1267  }
1268  if (auto_direction) {
1269  orientation_t o = con_orientation(current->con->parent);
1270  direction = direction_from_orientation_position(o, position);
1271  }
1272  tree_next(current->con, direction);
1273  }
1274 
1275  cmd_output->needs_tree_render = true;
1276  // XXX: default reply for now, make this a better reply
1277  ysuccess(true);
1278 }
1279 
1280 /*
1281  * Implementation of 'focus next|prev sibling'
1282  *
1283  */
1284 void cmd_focus_sibling(I3_CMD, const char *direction_str) {
1287 
1288  const position_t direction = (STARTS_WITH(direction_str, "prev")) ? BEFORE : AFTER;
1289  owindow *current;
1290  TAILQ_FOREACH (current, &owindows, owindows) {
1291  Con *ws = con_get_workspace(current->con);
1292  if (!ws || con_is_internal(ws)) {
1293  continue;
1294  }
1295  Con *next = get_tree_next_sibling(current->con, direction);
1296  if (next) {
1297  if (next->type == CT_WORKSPACE) {
1298  /* On the workspace level, we need to make sure that the
1299  * workspace change happens properly. However, workspace_show
1300  * descends focus so we also have to put focus on the workspace
1301  * itself to maintain consistency. See #3997. */
1302  workspace_show(next);
1303  con_focus(next);
1304  } else {
1305  con_activate(next);
1306  }
1307  }
1308  }
1309 
1310  cmd_output->needs_tree_render = true;
1311  // XXX: default reply for now, make this a better reply
1312  ysuccess(true);
1313 }
1314 
1315 /*
1316  * Implementation of 'focus tiling|floating|mode_toggle'.
1317  *
1318  */
1319 void cmd_focus_window_mode(I3_CMD, const char *window_mode) {
1320  DLOG("window_mode = %s\n", window_mode);
1321 
1322  bool to_floating = false;
1323  if (strcmp(window_mode, "mode_toggle") == 0) {
1324  to_floating = !con_inside_floating(focused);
1325  } else if (strcmp(window_mode, "floating") == 0) {
1326  to_floating = true;
1327  } else if (strcmp(window_mode, "tiling") == 0) {
1328  to_floating = false;
1329  }
1330 
1331  Con *ws = con_get_workspace(focused);
1332  Con *current;
1333  bool success = false;
1334  TAILQ_FOREACH (current, &(ws->focus_head), focused) {
1335  if ((to_floating && current->type != CT_FLOATING_CON) ||
1336  (!to_floating && current->type == CT_FLOATING_CON))
1337  continue;
1338 
1340  success = true;
1341  break;
1342  }
1343 
1344  if (success) {
1345  cmd_output->needs_tree_render = true;
1346  ysuccess(true);
1347  } else {
1348  yerror("Failed to find a %s container in workspace.", to_floating ? "floating" : "tiling");
1349  }
1350 }
1351 
1352 /*
1353  * Implementation of 'focus parent|child'.
1354  *
1355  */
1356 void cmd_focus_level(I3_CMD, const char *level) {
1357  DLOG("level = %s\n", level);
1358  bool success = false;
1359 
1360  /* Focusing the parent can only be allowed if the newly
1361  * focused container won't escape the fullscreen container. */
1362  if (strcmp(level, "parent") == 0) {
1363  if (focused && focused->parent) {
1365  success = level_up();
1366  else
1367  ELOG("'focus parent': Currently in fullscreen, not going up\n");
1368  }
1369  }
1370 
1371  /* Focusing a child should always be allowed. */
1372  else
1373  success = level_down();
1374 
1375  cmd_output->needs_tree_render = success;
1376  // XXX: default reply for now, make this a better reply
1377  ysuccess(success);
1378 }
1379 
1380 /*
1381  * Implementation of 'focus'.
1382  *
1383  */
1385  DLOG("current_match = %p\n", current_match);
1386 
1388  ELOG("You have to specify which window/container should be focused.\n");
1389  ELOG("Example: [class=\"urxvt\" title=\"irssi\"] focus\n");
1390 
1391  yerror("You have to specify which window/container should be focused");
1392  return;
1393  } else if (TAILQ_EMPTY(&owindows)) {
1394  yerror("No window matches given criteria");
1395  return;
1396  }
1397 
1399 
1400  Con *__i3_scratch = workspace_get("__i3_scratch");
1401  owindow *current;
1402  TAILQ_FOREACH (current, &owindows, owindows) {
1403  Con *ws = con_get_workspace(current->con);
1404  /* If no workspace could be found, this was a dock window.
1405  * Just skip it, you cannot focus dock windows. */
1406  if (!ws)
1407  continue;
1408 
1409  /* In case this is a scratchpad window, call scratchpad_show(). */
1410  if (ws == __i3_scratch) {
1411  scratchpad_show(current->con);
1412  /* While for the normal focus case we can change focus multiple
1413  * times and only a single window ends up focused, we could show
1414  * multiple scratchpad windows. So, rather break here. */
1415  break;
1416  }
1417 
1418  LOG("focusing %p / %s\n", current->con, current->con->name);
1419  con_activate_unblock(current->con);
1420  }
1421 
1422  cmd_output->needs_tree_render = true;
1423  ysuccess(true);
1424 }
1425 
1426 /*
1427  * Implementation of 'fullscreen enable|toggle [global]' and
1428  * 'fullscreen disable'
1429  *
1430  */
1431 void cmd_fullscreen(I3_CMD, const char *action, const char *fullscreen_mode) {
1432  fullscreen_mode_t mode = strcmp(fullscreen_mode, "global") == 0 ? CF_GLOBAL : CF_OUTPUT;
1433  DLOG("%s fullscreen, mode = %s\n", action, fullscreen_mode);
1434  owindow *current;
1435 
1437 
1438  TAILQ_FOREACH (current, &owindows, owindows) {
1439  DLOG("matching: %p / %s\n", current->con, current->con->name);
1440  if (strcmp(action, "toggle") == 0) {
1441  con_toggle_fullscreen(current->con, mode);
1442  } else if (strcmp(action, "enable") == 0) {
1443  con_enable_fullscreen(current->con, mode);
1444  } else if (strcmp(action, "disable") == 0) {
1445  con_disable_fullscreen(current->con);
1446  }
1447  }
1448 
1449  cmd_output->needs_tree_render = true;
1450  // XXX: default reply for now, make this a better reply
1451  ysuccess(true);
1452 }
1453 
1454 /*
1455  * Implementation of 'sticky enable|disable|toggle'.
1456  *
1457  */
1458 void cmd_sticky(I3_CMD, const char *action) {
1459  DLOG("%s sticky on window\n", action);
1461 
1462  owindow *current;
1463  TAILQ_FOREACH (current, &owindows, owindows) {
1464  if (current->con->window == NULL) {
1465  ELOG("only containers holding a window can be made sticky, skipping con = %p\n", current->con);
1466  continue;
1467  }
1468  DLOG("setting sticky for container = %p / %s\n", current->con, current->con->name);
1469 
1470  bool sticky = false;
1471  if (strcmp(action, "enable") == 0)
1472  sticky = true;
1473  else if (strcmp(action, "disable") == 0)
1474  sticky = false;
1475  else if (strcmp(action, "toggle") == 0)
1476  sticky = !current->con->sticky;
1477 
1478  current->con->sticky = sticky;
1479  ewmh_update_sticky(current->con->window->id, sticky);
1480  }
1481 
1482  /* A window we made sticky might not be on a visible workspace right now, so we need to make
1483  * sure it gets pushed to the front now. */
1485 
1487 
1488  cmd_output->needs_tree_render = true;
1489  ysuccess(true);
1490 }
1491 
1492 /*
1493  * Implementation of 'move <direction> [<amount> [px|ppt]]'.
1494  *
1495  */
1496 void cmd_move_direction(I3_CMD, const char *direction_str, long amount, const char *mode) {
1497  owindow *current;
1499 
1500  Con *initially_focused = focused;
1501  direction_t direction = parse_direction(direction_str);
1502 
1503  const bool is_ppt = mode && strcmp(mode, "ppt") == 0;
1504 
1505  DLOG("moving in direction %s, %ld %s\n", direction_str, amount, mode);
1506  TAILQ_FOREACH (current, &owindows, owindows) {
1507  if (con_is_floating(current->con)) {
1508  DLOG("floating move with %ld %s\n", amount, mode);
1509  Rect newrect = current->con->parent->rect;
1510  Con *output = con_get_output(current->con);
1511 
1512  switch (direction) {
1513  case D_LEFT:
1514  newrect.x -= is_ppt ? output->rect.width * ((double)amount / 100.0) : amount;
1515  break;
1516  case D_RIGHT:
1517  newrect.x += is_ppt ? output->rect.width * ((double)amount / 100.0) : amount;
1518  break;
1519  case D_UP:
1520  newrect.y -= is_ppt ? output->rect.height * ((double)amount / 100.0) : amount;
1521  break;
1522  case D_DOWN:
1523  newrect.y += is_ppt ? output->rect.height * ((double)amount / 100.0) : amount;
1524  break;
1525  }
1526 
1527  cmd_output->needs_tree_render = floating_reposition(current->con->parent, newrect);
1528  } else {
1529  tree_move(current->con, direction);
1530  cmd_output->needs_tree_render = true;
1531  }
1532  }
1533 
1534  /* The move command should not disturb focus. con_exists is called because
1535  * tree_move calls tree_flatten. */
1536  if (focused != initially_focused && con_exists(initially_focused)) {
1537  con_activate(initially_focused);
1538  }
1539 
1540  // XXX: default reply for now, make this a better reply
1541  ysuccess(true);
1542 }
1543 
1544 /*
1545  * Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'.
1546  *
1547  */
1548 void cmd_layout(I3_CMD, const char *layout_str) {
1550 
1551  layout_t layout;
1552  if (!layout_from_name(layout_str, &layout)) {
1553  yerror("Unknown layout \"%s\", this is a mismatch between code and parser spec.", layout_str);
1554  return;
1555  }
1556 
1557  DLOG("changing layout to %s (%d)\n", layout_str, layout);
1558 
1559  owindow *current;
1560  TAILQ_FOREACH (current, &owindows, owindows) {
1561  if (con_is_docked(current->con)) {
1562  ELOG("cannot change layout of a docked container, skipping it.\n");
1563  continue;
1564  }
1565 
1566  DLOG("matching: %p / %s\n", current->con, current->con->name);
1567  con_set_layout(current->con, layout);
1568  }
1569 
1570  cmd_output->needs_tree_render = true;
1571  // XXX: default reply for now, make this a better reply
1572  ysuccess(true);
1573 }
1574 
1575 /*
1576  * Implementation of 'layout toggle [all|split]'.
1577  *
1578  */
1579 void cmd_layout_toggle(I3_CMD, const char *toggle_mode) {
1580  owindow *current;
1581 
1582  if (toggle_mode == NULL)
1583  toggle_mode = "default";
1584 
1585  DLOG("toggling layout (mode = %s)\n", toggle_mode);
1586 
1587  /* check if the match is empty, not if the result is empty */
1589  con_toggle_layout(focused, toggle_mode);
1590  else {
1591  TAILQ_FOREACH (current, &owindows, owindows) {
1592  DLOG("matching: %p / %s\n", current->con, current->con->name);
1593  con_toggle_layout(current->con, toggle_mode);
1594  }
1595  }
1596 
1597  cmd_output->needs_tree_render = true;
1598  // XXX: default reply for now, make this a better reply
1599  ysuccess(true);
1600 }
1601 
1602 /*
1603  * Implementation of 'exit'.
1604  *
1605  */
1607  LOG("Exiting due to user command.\n");
1608  exit(EXIT_SUCCESS);
1609 
1610  /* unreached */
1611 }
1612 
1613 /*
1614  * Implementation of 'reload'.
1615  *
1616  */
1618  LOG("reloading\n");
1619 
1622  /* start_nagbar() will refuse to start a new process if the passed pid is
1623  * set. This will happen when our child watcher is triggered by libev when
1624  * the loop re-starts. However, config errors might be detected before
1625  * that since we will read the config right now with load_configuration.
1626  * See #4104. */
1628 
1630  x_set_i3_atoms();
1631  /* Send an IPC event just in case the ws names have changed */
1632  ipc_send_workspace_event("reload", NULL, NULL);
1633  /* Send an update event for each barconfig just in case it has changed */
1634  Barconfig *current;
1635  TAILQ_FOREACH (current, &barconfigs, configs) {
1637  }
1638 
1639  // XXX: default reply for now, make this a better reply
1640  ysuccess(true);
1641 }
1642 
1643 /*
1644  * Implementation of 'restart'.
1645  *
1646  */
1648  LOG("restarting i3\n");
1649  int exempt_fd = -1;
1650  if (cmd_output->client != NULL) {
1651  exempt_fd = cmd_output->client->fd;
1652  LOG("Carrying file descriptor %d across restart\n", exempt_fd);
1653  int flags;
1654  if ((flags = fcntl(exempt_fd, F_GETFD)) < 0 ||
1655  fcntl(exempt_fd, F_SETFD, flags & ~FD_CLOEXEC) < 0) {
1656  ELOG("Could not disable FD_CLOEXEC on fd %d\n", exempt_fd);
1657  }
1658  char *fdstr = NULL;
1659  sasprintf(&fdstr, "%d", exempt_fd);
1660  setenv("_I3_RESTART_FD", fdstr, 1);
1661  }
1663  unlink(config.ipc_socket_path);
1664  /* We need to call this manually since atexit handlers don’t get called
1665  * when exec()ing */
1667  i3_restart(false);
1668  /* unreached */
1669  assert(false);
1670 }
1671 
1672 /*
1673  * Implementation of 'open'.
1674  *
1675  */
1677  LOG("opening new container\n");
1678  Con *con = tree_open_con(NULL, NULL);
1679  con->layout = L_SPLITH;
1680  con_activate(con);
1681 
1682  y(map_open);
1683  ystr("success");
1684  y(bool, true);
1685  ystr("id");
1686  y(integer, (uintptr_t)con);
1687  y(map_close);
1688 
1689  cmd_output->needs_tree_render = true;
1690 }
1691 
1692 /*
1693  * Implementation of 'focus output <output>'.
1694  *
1695  */
1696 void cmd_focus_output(I3_CMD, const char *name) {
1698 
1699  if (TAILQ_EMPTY(&owindows)) {
1700  ysuccess(true);
1701  return;
1702  }
1703 
1704  Output *current_output = get_output_for_con(TAILQ_FIRST(&owindows)->con);
1705  Output *output = get_output_from_string(current_output, name);
1706 
1707  if (!output) {
1708  yerror("Output %s not found.", name);
1709  return;
1710  }
1711 
1712  /* get visible workspace on output */
1713  Con *ws = NULL;
1714  GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1715  if (!ws) {
1716  yerror("BUG: No workspace found on output.");
1717  return;
1718  }
1719 
1720  workspace_show(ws);
1721 
1722  cmd_output->needs_tree_render = true;
1723  ysuccess(true);
1724 }
1725 
1726 /*
1727  * Implementation of 'move [window|container] [to] [absolute] position [<pos_x> [px|ppt] <pos_y> [px|ppt]]
1728  *
1729  */
1730 void cmd_move_window_to_position(I3_CMD, long x, const char *mode_x, long y, const char *mode_y) {
1731  bool has_error = false;
1732 
1733  owindow *current;
1735 
1736  TAILQ_FOREACH (current, &owindows, owindows) {
1737  if (!con_is_floating(current->con)) {
1738  ELOG("Cannot change position. The window/container is not floating\n");
1739 
1740  if (!has_error) {
1741  yerror("Cannot change position of a window/container because it is not floating.");
1742  has_error = true;
1743  }
1744 
1745  continue;
1746  }
1747 
1748  Rect newrect = current->con->parent->rect;
1749  Con *output = con_get_output(current->con);
1750 
1751  newrect.x = mode_x && strcmp(mode_x, "ppt") == 0 ? output->rect.width * ((double)x / 100.0) : x;
1752  newrect.y = mode_y && strcmp(mode_y, "ppt") == 0 ? output->rect.height * ((double)y / 100.0) : y;
1753  DLOG("moving to position %d %s %d %s\n", newrect.x, mode_x, newrect.y, mode_y);
1754 
1755  if (!floating_reposition(current->con->parent, newrect)) {
1756  yerror("Cannot move window/container out of bounds.");
1757  has_error = true;
1758  }
1759  }
1760 
1761  if (!has_error)
1762  ysuccess(true);
1763 }
1764 
1765 /*
1766  * Implementation of 'move [window|container] [to] [absolute] position center
1767  *
1768  */
1769 void cmd_move_window_to_center(I3_CMD, const char *method) {
1770  bool has_error = false;
1772 
1773  owindow *current;
1774  TAILQ_FOREACH (current, &owindows, owindows) {
1775  Con *floating_con = con_inside_floating(current->con);
1776  if (floating_con == NULL) {
1777  ELOG("con %p / %s is not floating, cannot move it to the center.\n",
1778  current->con, current->con->name);
1779 
1780  if (!has_error) {
1781  yerror("Cannot change position of a window/container because it is not floating.");
1782  has_error = true;
1783  }
1784 
1785  continue;
1786  }
1787 
1788  if (strcmp(method, "absolute") == 0) {
1789  DLOG("moving to absolute center\n");
1790  floating_center(floating_con, croot->rect);
1791 
1792  floating_maybe_reassign_ws(floating_con);
1793  cmd_output->needs_tree_render = true;
1794  }
1795 
1796  if (strcmp(method, "position") == 0) {
1797  DLOG("moving to center\n");
1798  floating_center(floating_con, con_get_workspace(floating_con)->rect);
1799 
1800  cmd_output->needs_tree_render = true;
1801  }
1802  }
1803 
1804  // XXX: default reply for now, make this a better reply
1805  if (!has_error)
1806  ysuccess(true);
1807 }
1808 
1809 /*
1810  * Implementation of 'move [window|container] [to] position mouse'
1811  *
1812  */
1815 
1816  owindow *current;
1817  TAILQ_FOREACH (current, &owindows, owindows) {
1818  Con *floating_con = con_inside_floating(current->con);
1819  if (floating_con == NULL) {
1820  DLOG("con %p / %s is not floating, cannot move it to the mouse position.\n",
1821  current->con, current->con->name);
1822  continue;
1823  }
1824 
1825  DLOG("moving floating container %p / %s to cursor position\n", floating_con, floating_con->name);
1826  floating_move_to_pointer(floating_con);
1827  }
1828 
1829  cmd_output->needs_tree_render = true;
1830  ysuccess(true);
1831 }
1832 
1833 /*
1834  * Implementation of 'move scratchpad'.
1835  *
1836  */
1838  DLOG("should move window to scratchpad\n");
1839  owindow *current;
1840 
1842 
1843  TAILQ_FOREACH (current, &owindows, owindows) {
1844  DLOG("matching: %p / %s\n", current->con, current->con->name);
1845  scratchpad_move(current->con);
1846  }
1847 
1848  cmd_output->needs_tree_render = true;
1849  // XXX: default reply for now, make this a better reply
1850  ysuccess(true);
1851 }
1852 
1853 /*
1854  * Implementation of 'scratchpad show'.
1855  *
1856  */
1858  DLOG("should show scratchpad window\n");
1859  owindow *current;
1860  bool result = false;
1861 
1863  result = scratchpad_show(NULL);
1864  } else {
1865  TAILQ_FOREACH (current, &owindows, owindows) {
1866  DLOG("matching: %p / %s\n", current->con, current->con->name);
1867  result |= scratchpad_show(current->con);
1868  }
1869  }
1870 
1871  cmd_output->needs_tree_render = true;
1872 
1873  ysuccess(result);
1874 }
1875 
1876 /*
1877  * Implementation of 'swap [container] [with] id|con_id|mark <arg>'.
1878  *
1879  */
1880 void cmd_swap(I3_CMD, const char *mode, const char *arg) {
1882 
1883  owindow *match = TAILQ_FIRST(&owindows);
1884  if (match == NULL) {
1885  yerror("No match found for swapping.");
1886  return;
1887  }
1888  if (match->con == NULL) {
1889  yerror("Match %p has no container.", match);
1890  return;
1891  }
1892 
1893  Con *con;
1894  if (strcmp(mode, "id") == 0) {
1895  long target;
1896  if (!parse_long(arg, &target, 0)) {
1897  yerror("Failed to parse %s into a window id.", arg);
1898  return;
1899  }
1900 
1901  con = con_by_window_id(target);
1902  } else if (strcmp(mode, "con_id") == 0) {
1903  long target;
1904  if (!parse_long(arg, &target, 0)) {
1905  yerror("Failed to parse %s into a container id.", arg);
1906  return;
1907  }
1908 
1909  con = con_by_con_id(target);
1910  } else if (strcmp(mode, "mark") == 0) {
1911  con = con_by_mark(arg);
1912  } else {
1913  yerror("Unhandled swap mode \"%s\". This is a bug.", mode);
1914  return;
1915  }
1916 
1917  if (con == NULL) {
1918  yerror("Could not find container for %s = %s", mode, arg);
1919  return;
1920  }
1921 
1922  if (match != TAILQ_LAST(&owindows, owindows_head)) {
1923  LOG("More than one container matched the swap command, only using the first one.");
1924  }
1925 
1926  DLOG("Swapping %p with %p.\n", match->con, con);
1927  bool result = con_swap(match->con, con);
1928 
1929  cmd_output->needs_tree_render = true;
1930  // XXX: default reply for now, make this a better reply
1931  ysuccess(result);
1932 }
1933 
1934 /*
1935  * Implementation of 'title_format <format>'
1936  *
1937  */
1938 void cmd_title_format(I3_CMD, const char *format) {
1939  DLOG("setting title_format to \"%s\"\n", format);
1941 
1942  owindow *current;
1943  TAILQ_FOREACH (current, &owindows, owindows) {
1944  DLOG("setting title_format for %p / %s\n", current->con, current->con->name);
1945  FREE(current->con->title_format);
1946 
1947  /* If we only display the title without anything else, we can skip the parsing step,
1948  * so we remove the title format altogether. */
1949  if (strcasecmp(format, "%title") != 0) {
1950  current->con->title_format = sstrdup(format);
1951 
1952  if (current->con->window != NULL) {
1953  i3String *formatted_title = con_parse_title_format(current->con);
1954  ewmh_update_visible_name(current->con->window->id, i3string_as_utf8(formatted_title));
1955  I3STRING_FREE(formatted_title);
1956  }
1957  } else {
1958  if (current->con->window != NULL) {
1959  /* We can remove _NET_WM_VISIBLE_NAME since we don't display a custom title. */
1960  ewmh_update_visible_name(current->con->window->id, NULL);
1961  }
1962  }
1963 
1964  if (current->con->window != NULL) {
1965  /* Make sure the window title is redrawn immediately. */
1966  current->con->window->name_x_changed = true;
1967  } else {
1968  /* For windowless containers we also need to force the redrawing. */
1969  FREE(current->con->deco_render_params);
1970  }
1971  }
1972 
1973  cmd_output->needs_tree_render = true;
1974  ysuccess(true);
1975 }
1976 
1977 /*
1978  * Implementation of 'rename workspace [<name>] to <name>'
1979  *
1980  */
1981 void cmd_rename_workspace(I3_CMD, const char *old_name, const char *new_name) {
1982  if (strncasecmp(new_name, "__", strlen("__")) == 0) {
1983  yerror("Cannot rename workspace to \"%s\": names starting with __ are i3-internal.", new_name);
1984  return;
1985  }
1986  if (old_name) {
1987  LOG("Renaming workspace \"%s\" to \"%s\"\n", old_name, new_name);
1988  } else {
1989  LOG("Renaming current workspace to \"%s\"\n", new_name);
1990  }
1991 
1992  Con *workspace;
1993  if (old_name) {
1994  workspace = get_existing_workspace_by_name(old_name);
1995  } else {
1996  workspace = con_get_workspace(focused);
1997  old_name = workspace->name;
1998  }
1999 
2000  if (!workspace) {
2001  yerror("Old workspace \"%s\" not found", old_name);
2002  return;
2003  }
2004 
2005  Con *check_dest = get_existing_workspace_by_name(new_name);
2006 
2007  /* If check_dest == workspace, the user might be changing the case of the
2008  * workspace, or it might just be a no-op. */
2009  if (check_dest != NULL && check_dest != workspace) {
2010  yerror("New workspace \"%s\" already exists", new_name);
2011  return;
2012  }
2013 
2014  /* Change the name and try to parse it as a number. */
2015  /* old_name might refer to workspace->name, so copy it before free()ing */
2016  char *old_name_copy = sstrdup(old_name);
2017  FREE(workspace->name);
2018  workspace->name = sstrdup(new_name);
2019 
2020  workspace->num = ws_name_to_number(new_name);
2021  LOG("num = %d\n", workspace->num);
2022 
2023  /* By re-attaching, the sort order will be correct afterwards. */
2024  Con *previously_focused = focused;
2025  Con *previously_focused_content = focused->type == CT_WORKSPACE ? focused->parent : NULL;
2026  Con *parent = workspace->parent;
2027  con_detach(workspace);
2028  con_attach(workspace, parent, false);
2029  ipc_send_workspace_event("rename", workspace, NULL);
2030 
2031  Con *assigned = get_assigned_output(workspace->name, workspace->num);
2032  if (assigned) {
2033  workspace_move_to_output(workspace, get_output_for_con(assigned));
2034  }
2035 
2036  bool can_restore_focus = previously_focused != NULL;
2037  /* NB: If previously_focused is a workspace we can't work directly with it
2038  * since it might have been cleaned up by workspace_show() already,
2039  * depending on the focus order/number of other workspaces on the output.
2040  * Instead, we loop through the available workspaces and only focus
2041  * previously_focused if we still find it. */
2042  if (previously_focused_content) {
2043  Con *workspace = NULL;
2044  GREP_FIRST(workspace, previously_focused_content, child == previously_focused);
2045  can_restore_focus &= (workspace != NULL);
2046  }
2047 
2048  if (can_restore_focus) {
2049  /* Restore the previous focus since con_attach messes with the focus. */
2050  workspace_show(con_get_workspace(previously_focused));
2051  con_focus(previously_focused);
2052  }
2053 
2054  /* Let back-and-forth work after renaming the previous workspace.
2055  * See #3694. */
2056  if (previous_workspace_name && !strcmp(previous_workspace_name, old_name_copy)) {
2058  previous_workspace_name = sstrdup(new_name);
2059  }
2060 
2061  cmd_output->needs_tree_render = true;
2062  ysuccess(true);
2063 
2065 
2066  startup_sequence_rename_workspace(old_name_copy, new_name);
2067  free(old_name_copy);
2068 }
2069 
2070 /*
2071  * Implementation of 'bar mode dock|hide|invisible|toggle [<bar_id>]'
2072  *
2073  */
2074 void cmd_bar_mode(I3_CMD, const char *bar_mode, const char *bar_id) {
2075  int mode = M_DOCK;
2076  bool toggle = false;
2077  if (strcmp(bar_mode, "dock") == 0)
2078  mode = M_DOCK;
2079  else if (strcmp(bar_mode, "hide") == 0)
2080  mode = M_HIDE;
2081  else if (strcmp(bar_mode, "invisible") == 0)
2082  mode = M_INVISIBLE;
2083  else if (strcmp(bar_mode, "toggle") == 0)
2084  toggle = true;
2085  else {
2086  ELOG("Unknown bar mode \"%s\", this is a mismatch between code and parser spec.\n", bar_mode);
2087  assert(false);
2088  }
2089 
2090  if (TAILQ_EMPTY(&barconfigs)) {
2091  yerror("No bars found\n");
2092  return;
2093  }
2094 
2095  Barconfig *current = NULL;
2096  TAILQ_FOREACH (current, &barconfigs, configs) {
2097  if (bar_id && strcmp(current->id, bar_id) != 0) {
2098  continue;
2099  }
2100 
2101  if (toggle) {
2102  mode = (current->mode + 1) % 2;
2103  }
2104 
2105  DLOG("Changing bar mode of bar_id '%s' from '%d' to '%s (%d)'\n",
2106  current->id, current->mode, bar_mode, mode);
2107  if ((int)current->mode != mode) {
2108  current->mode = mode;
2110  }
2111 
2112  if (bar_id) {
2113  /* We are looking for a specific bar and we found it */
2114  ysuccess(true);
2115  return;
2116  }
2117  }
2118 
2119  if (bar_id) {
2120  /* We are looking for a specific bar and we did not find it */
2121  yerror("Changing bar mode of bar_id %s failed, bar_id not found.\n", bar_id);
2122  } else {
2123  /* We have already handled the case of no bars, so we must have
2124  * updated all active bars now. */
2125  ysuccess(true);
2126  }
2127 }
2128 
2129 /*
2130  * Implementation of 'bar hidden_state hide|show|toggle [<bar_id>]'
2131  *
2132  */
2133 void cmd_bar_hidden_state(I3_CMD, const char *bar_hidden_state, const char *bar_id) {
2134  int hidden_state = S_SHOW;
2135  bool toggle = false;
2136  if (strcmp(bar_hidden_state, "hide") == 0)
2137  hidden_state = S_HIDE;
2138  else if (strcmp(bar_hidden_state, "show") == 0)
2139  hidden_state = S_SHOW;
2140  else if (strcmp(bar_hidden_state, "toggle") == 0)
2141  toggle = true;
2142  else {
2143  ELOG("Unknown bar state \"%s\", this is a mismatch between code and parser spec.\n", bar_hidden_state);
2144  assert(false);
2145  }
2146 
2147  if (TAILQ_EMPTY(&barconfigs)) {
2148  yerror("No bars found\n");
2149  return;
2150  }
2151 
2152  Barconfig *current = NULL;
2153  TAILQ_FOREACH (current, &barconfigs, configs) {
2154  if (bar_id && strcmp(current->id, bar_id) != 0) {
2155  continue;
2156  }
2157 
2158  if (toggle) {
2159  hidden_state = (current->hidden_state + 1) % 2;
2160  }
2161 
2162  DLOG("Changing bar hidden_state of bar_id '%s' from '%d' to '%s (%d)'\n",
2163  current->id, current->hidden_state, bar_hidden_state, hidden_state);
2164  if ((int)current->hidden_state != hidden_state) {
2165  current->hidden_state = hidden_state;
2167  }
2168 
2169  if (bar_id) {
2170  /* We are looking for a specific bar and we found it */
2171  ysuccess(true);
2172  return;
2173  }
2174  }
2175 
2176  if (bar_id) {
2177  /* We are looking for a specific bar and we did not find it */
2178  yerror("Changing bar hidden_state of bar_id %s failed, bar_id not found.\n", bar_id);
2179  } else {
2180  /* We have already handled the case of no bars, so we must have
2181  * updated all active bars now. */
2182  ysuccess(true);
2183  }
2184 }
2185 
2186 /*
2187  * Implementation of 'shmlog <size>|toggle|on|off'
2188  *
2189  */
2190 void cmd_shmlog(I3_CMD, const char *argument) {
2191  if (!strcmp(argument, "toggle"))
2192  /* Toggle shm log, if size is not 0. If it is 0, set it to default. */
2194  else if (!strcmp(argument, "on"))
2196  else if (!strcmp(argument, "off"))
2197  shmlog_size = 0;
2198  else {
2199  long new_size = 0;
2200  if (!parse_long(argument, &new_size, 0)) {
2201  yerror("Failed to parse %s into a shmlog size.", argument);
2202  return;
2203  }
2204  /* If shm logging now, restart logging with the new size. */
2205  if (shmlog_size > 0) {
2206  shmlog_size = 0;
2207  LOG("Restarting shm logging...\n");
2208  init_logging();
2209  }
2210  shmlog_size = (int)new_size;
2211  }
2212  LOG("%s shm logging\n", shmlog_size > 0 ? "Enabling" : "Disabling");
2213  init_logging();
2215  ysuccess(true);
2216 }
2217 
2218 /*
2219  * Implementation of 'debuglog toggle|on|off'
2220  *
2221  */
2222 void cmd_debuglog(I3_CMD, const char *argument) {
2223  bool logging = get_debug_logging();
2224  if (!strcmp(argument, "toggle")) {
2225  LOG("%s debug logging\n", logging ? "Disabling" : "Enabling");
2226  set_debug_logging(!logging);
2227  } else if (!strcmp(argument, "on") && !logging) {
2228  LOG("Enabling debug logging\n");
2229  set_debug_logging(true);
2230  } else if (!strcmp(argument, "off") && logging) {
2231  LOG("Disabling debug logging\n");
2232  set_debug_logging(false);
2233  }
2234  // XXX: default reply for now, make this a better reply
2235  ysuccess(true);
2236 }
void switch_mode(const char *new_mode)
Switches the key bindings to the given mode, if the mode exists.
Definition: bindings.c:620
pid_t command_error_nagbar_pid
Definition: bindings.c:19
#define ysuccess(success)
Definition: commands.c:20
static void cmd_resize_floating(I3_CMD, const char *direction_str, Con *floating_con, int px)
Definition: commands.c:424
#define CMD_FOCUS_WARN_CHILDREN
Definition: commands.c:1227
void cmd_move_con_to_mark(I3_CMD, const char *mark)
Implementation of 'move [window|container] [to] mark <str>'.
Definition: commands.c:1050
#define y(x,...)
Definition: commands.c:18
void cmd_move_con_to_workspace_number(I3_CMD, const char *which, const char *no_auto_back_and_forth)
Implementation of 'move [–no-auto-back-and-forth] [window|container] [to] workspace number <number>'.
Definition: commands.c:377
struct owindow owindow
void cmd_append_layout(I3_CMD, const char *cpath)
Implementation of 'append_layout <path>'.
Definition: commands.c:773
typedef TAILQ_HEAD(owindows_head, owindow)
Definition: commands.c:135
void cmd_focus_sibling(I3_CMD, const char *direction_str)
Implementation of 'focus next|prev sibling'.
Definition: commands.c:1284
static bool cmd_resize_tiling_direction(I3_CMD, Con *current, const char *direction, int px, int ppt)
Definition: commands.c:483
static Con * maybe_auto_back_and_forth_workspace(Con *workspace)
Definition: commands.c:102
void cmd_mode(I3_CMD, const char *mode)
Implementation of 'mode <string>'.
Definition: commands.c:1018
void cmd_move_con_to_output(I3_CMD, const char *name)
Implementation of 'move [window|container] [to] output <str>'.
Definition: commands.c:1030
void cmd_nop(I3_CMD, const char *comment)
Implementation of 'nop <comment>'.
Definition: commands.c:762
void cmd_rename_workspace(I3_CMD, const char *old_name, const char *new_name)
Implementation of 'rename workspace <name> to <name>'.
Definition: commands.c:1981
void cmd_focus(I3_CMD)
Implementation of 'focus'.
Definition: commands.c:1384
void cmd_sticky(I3_CMD, const char *action)
Implementation of 'sticky enable|disable|toggle'.
Definition: commands.c:1458
void cmd_bar_hidden_state(I3_CMD, const char *bar_hidden_state, const char *bar_id)
Implementation of 'bar hidden_state hide|show|toggle [<bar_id>]'.
Definition: commands.c:2133
static int border_width_from_style(border_style_t border_style, long border_width, Con *con)
Definition: commands.c:703
void cmd_bar_mode(I3_CMD, const char *bar_mode, const char *bar_id)
Implementation of 'bar mode dock|hide|invisible|toggle [<bar_id>]'.
Definition: commands.c:2074
void cmd_floating(I3_CMD, const char *floating_mode)
Implementation of 'floating enable|disable|toggle'.
Definition: commands.c:1070
void cmd_criteria_match_windows(I3_CMD)
A match specification just finished (the closing square bracket was found), so we filter the list of ...
Definition: commands.c:170
static direction_t parse_direction(const char *str)
Definition: commands.c:409
static bool maybe_back_and_forth(struct CommandResultIR *cmd_output, const char *name)
Definition: commands.c:83
void cmd_focus_window_mode(I3_CMD, const char *window_mode)
Implementation of 'focus tiling|floating|mode_toggle'.
Definition: commands.c:1319
void cmd_mark(I3_CMD, const char *mark, const char *mode, const char *toggle)
Implementation of 'mark [–add|–replace] [–toggle] <mark>'.
Definition: commands.c:966
void cmd_move_workspace_to_output(I3_CMD, const char *name)
Implementation of 'move workspace to [output] <str>'.
Definition: commands.c:1101
void cmd_resize(I3_CMD, const char *way, const char *direction, long resize_px, long resize_ppt)
Implementation of 'resize grow|shrink <direction> [<px> px] [or <ppt> ppt]'.
Definition: commands.c:575
void cmd_exec(I3_CMD, const char *nosn, const char *command)
Implementation of 'exec [–no-startup-id] <command>'.
Definition: commands.c:1202
void cmd_move_window_to_position(I3_CMD, long x, const char *mode_x, long y, const char *mode_y)
Implementation of 'move [window|container] [to] [absolute] position [<pos_x> [px|ppt] <pos_y> [px|ppt...
Definition: commands.c:1730
void cmd_focus_direction(I3_CMD, const char *direction_str)
Implementation of 'focus left|right|up|down'.
Definition: commands.c:1246
void cmd_move_con_to_workspace_back_and_forth(I3_CMD)
Implementation of 'move [window|container] [to] workspace back_and_forth'.
Definition: commands.c:330
void cmd_restart(I3_CMD)
Implementation of 'restart'.
Definition: commands.c:1647
void cmd_move_con_to_workspace_name(I3_CMD, const char *name, const char *no_auto_back_and_forth)
Implementation of 'move [–no-auto-back-and-forth] [window|container] [to] workspace <name>'.
Definition: commands.c:350
void cmd_move_window_to_mouse(I3_CMD)
Implementation of 'move [window|container] [to] position mouse'.
Definition: commands.c:1813
void cmd_resize_set(I3_CMD, long cwidth, const char *mode_width, long cheight, const char *mode_height)
Implementation of 'resize set <width> [px | ppt] <height> [px | ppt]'.
Definition: commands.c:654
#define CHECK_MOVE_CON_TO_WORKSPACE
Definition: commands.c:265
void cmd_focus_level(I3_CMD, const char *level)
Implementation of 'focus parent|child'.
Definition: commands.c:1356
void cmd_swap(I3_CMD, const char *mode, const char *arg)
Implementation of 'swap [container] [with] id|con_id|mark <arg>'.
Definition: commands.c:1880
void cmd_criteria_add(I3_CMD, const char *ctype, const char *cvalue)
Interprets a ctype=cvalue pair and adds it to the current match specification.
Definition: commands.c:253
#define HANDLE_EMPTY_MATCH
When the command did not include match criteria (!), we use the currently focused container.
Definition: commands.c:59
void cmd_layout(I3_CMD, const char *layout_str)
Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'.
Definition: commands.c:1548
void cmd_workspace(I3_CMD, const char *which)
Implementation of 'workspace next|prev|next_on_output|prev_on_output'.
Definition: commands.c:849
void cmd_unmark(I3_CMD, const char *mark)
Implementation of 'unmark [mark]'.
Definition: commands.c:999
void cmd_fullscreen(I3_CMD, const char *action, const char *fullscreen_mode)
Implementation of 'fullscreen [enable|disable|toggle] [global]'.
Definition: commands.c:1431
void cmd_move_con_to_workspace(I3_CMD, const char *which)
Implementation of 'move [window|container] [to] workspace next|prev|next_on_output|prev_on_output'.
Definition: commands.c:297
#define ystr(str)
Definition: commands.c:19
void cmd_open(I3_CMD)
Implementation of 'open'.
Definition: commands.c:1676
void cmd_shmlog(I3_CMD, const char *argument)
Implementation of 'shmlog <size>|toggle|on|off'.
Definition: commands.c:2190
void cmd_debuglog(I3_CMD, const char *argument)
Implementation of 'debuglog toggle|on|off'.
Definition: commands.c:2222
#define yerror(format,...)
Definition: commands.c:29
void cmd_kill(I3_CMD, const char *kill_mode_str)
Implementation of 'kill [window|client]'.
Definition: commands.c:1170
void cmd_workspace_number(I3_CMD, const char *which, const char *_no_auto_back_and_forth)
Implementation of 'workspace [–no-auto-back-and-forth] number <number>'.
Definition: commands.c:883
static bool resize_set_tiling(I3_CMD, Con *target, orientation_t resize_orientation, bool is_ppt, long target_size)
Definition: commands.c:621
void cmd_move_direction(I3_CMD, const char *direction_str, long amount, const char *mode)
Implementation of 'move <direction> [<amount> [px|ppt]]'.
Definition: commands.c:1496
void cmd_move_window_to_center(I3_CMD, const char *method)
Implementation of 'move [window|container] [to] [absolute] position center.
Definition: commands.c:1769
void cmd_title_format(I3_CMD, const char *format)
Implementation of 'title_format <format>'.
Definition: commands.c:1938
void cmd_layout_toggle(I3_CMD, const char *toggle_mode)
Implementation of 'layout toggle [all|split]'.
Definition: commands.c:1579
void cmd_focus_output(I3_CMD, const char *name)
Implementation of 'focus output <output>'.
Definition: commands.c:1696
void cmd_border(I3_CMD, const char *border_style_str, long border_width)
Implementation of 'border normal|pixel [<n>]', 'border none|1pixel|toggle'.
Definition: commands.c:727
void cmd_workspace_name(I3_CMD, const char *name, const char *_no_auto_back_and_forth)
Implementation of 'workspace [–no-auto-back-and-forth] <name>'.
Definition: commands.c:937
void cmd_scratchpad_show(I3_CMD)
Implementation of 'scratchpad show'.
Definition: commands.c:1857
static void move_matches_to_workspace(Con *ws)
Definition: commands.c:257
void cmd_split(I3_CMD, const char *direction)
Implementation of 'split v|h|t|vertical|horizontal|toggle'.
Definition: commands.c:1131
static bool cmd_resize_tiling_width_height(I3_CMD, Con *current, const char *direction, int px, double ppt)
Definition: commands.c:502
void cmd_workspace_back_and_forth(I3_CMD)
Implementation of 'workspace back_and_forth'.
Definition: commands.c:920
void cmd_reload(I3_CMD)
Implementation of 'reload'.
Definition: commands.c:1617
void cmd_exit(I3_CMD)
Implementation of 'exit'.
Definition: commands.c:1606
void cmd_move_scratchpad(I3_CMD)
Implementation of 'move scratchpad'.
Definition: commands.c:1837
static Match current_match
void con_move_to_workspace(Con *con, Con *workspace, bool fix_coordinates, bool dont_warp, bool ignore_focus)
Moves the given container to the currently focused container on the given workspace.
Definition: con.c:1425
bool con_move_to_mark(Con *con, const char *mark)
Moves the given container to the given mark.
Definition: con.c:1362
bool con_move_to_output_name(Con *con, const char *name, bool fix_coordinates)
Moves the given container to the currently focused container on the visible workspace on the output s...
Definition: con.c:1458
bool con_is_floating(Con *con)
Returns true if the node is floating.
Definition: con.c:595
Con * con_by_con_id(long target)
Returns the container with the given container ID or NULL if no such container exists.
Definition: con.c:682
void con_close(Con *con, kill_window_t kill_window)
Closes the given container.
Definition: con.c:330
orientation_t con_orientation(Con *con)
Returns the orientation of the given container (for stacked containers, vertical orientation is used ...
Definition: con.c:1476
Con * con_get_workspace(Con *con)
Gets the workspace container this node is on.
Definition: con.c:476
void con_unmark(Con *con, const char *name)
Removes marks from containers.
Definition: con.c:797
Con * con_by_window_id(xcb_window_t window)
Returns the container with the given client window ID or NULL if no such container exists.
Definition: con.c:667
void con_disable_fullscreen(Con *con)
Disables fullscreen mode for the given container, if necessary.
Definition: con.c:1158
Con * con_get_fullscreen_con(Con *con, fullscreen_mode_t fullscreen_mode)
Returns the first fullscreen node below this node.
Definition: con.c:524
bool con_is_docked(Con *con)
Returns true if the container is a docked container.
Definition: con.c:604
Con * con_descend_focused(Con *con)
Returns the focused con inside this client, descending the tree as far as possible.
Definition: con.c:1549
void con_mark(Con *con, const char *mark, mark_mode_t mode)
Assigns a mark to the container.
Definition: con.c:767
void con_activate_unblock(Con *con)
Activates the container like in con_activate but removes fullscreen restrictions and properly warps t...
Definition: con.c:296
Con * con_by_mark(const char *mark)
Returns the container with the given mark or NULL if no such container exists.
Definition: con.c:722
i3String * con_parse_title_format(Con *con)
Returns the window title considering the current title format.
Definition: con.c:2295
void con_mark_toggle(Con *con, const char *mark, mark_mode_t mode)
Toggles the mark on a container.
Definition: con.c:752
bool con_fullscreen_permits_focusing(Con *con)
Returns true if changing the focus to con would be allowed considering the fullscreen focus constrain...
Definition: con.c:2102
bool con_swap(Con *first, Con *second)
Swaps the two containers.
Definition: con.c:2339
bool con_accepts_window(Con *con)
Returns true if this node accepts a window (if the node swallows windows, it might already have swall...
Definition: con.c:443
uint32_t con_rect_size_in_orientation(Con *con)
Returns given container's rect size depending on its orientation.
Definition: con.c:2459
bool con_is_internal(Con *con)
Returns true if the container is internal, such as __i3_scratch.
Definition: con.c:587
bool con_exists(Con *con)
Returns true if the given container (still) exists.
Definition: con.c:698
void con_detach(Con *con)
Detaches the given container from its current parent.
Definition: con.c:229
void con_toggle_fullscreen(Con *con, int fullscreen_mode)
Toggles fullscreen mode for the given container.
Definition: con.c:1058
Con * con_inside_floating(Con *con)
Checks if the given container is either floating or inside some floating container.
Definition: con.c:619
void con_attach(Con *con, Con *parent, bool ignore_focus)
Attaches the given container to the given parent.
Definition: con.c:221
Con * con_get_output(Con *con)
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on.
Definition: con.c:462
void con_set_border_style(Con *con, int border_style, int border_width)
Sets the given border style on con, correctly keeping the position/size of a floating window.
Definition: con.c:1759
int con_num_children(Con *con)
Returns the number of children of this container.
Definition: con.c:946
void con_set_layout(Con *con, layout_t layout)
This function changes the layout of a given container.
Definition: con.c:1801
void con_activate(Con *con)
Sets input focus to the given container and raises it to the top.
Definition: con.c:286
void con_toggle_layout(Con *con, const char *toggle_mode)
This function toggles the layout of a given container.
Definition: con.c:1886
void con_enable_fullscreen(Con *con, fullscreen_mode_t fullscreen_mode)
Enables fullscreen mode for the given container, if necessary.
Definition: con.c:1112
void con_focus(Con *con)
Sets input focus to the given container.
Definition: con.c:245
Config config
Definition: config.c:17
bool load_configuration(const char *override_configpath, config_load_t load_type)
(Re-)loads the configuration file (sets useful defaults before).
Definition: config.c:163
struct barconfig_head barconfigs
Definition: config.c:19
pid_t config_error_nagbar_pid
Definition: config_parser.c:48
void ewmh_update_visible_name(xcb_window_t window, const char *name)
Updates _NET_WM_VISIBLE_NAME.
Definition: ewmh.c:216
void ewmh_update_desktop_properties(void)
Updates all the EWMH desktop properties.
Definition: ewmh.c:118
void ewmh_update_wm_desktop(void)
Updates _NET_WM_DESKTOP for all windows.
Definition: ewmh.c:184
void ewmh_update_sticky(xcb_window_t window, bool sticky)
Set or remove _NET_WM_STATE_STICKY on the window.
Definition: ewmh.c:279
void floating_check_size(Con *floating_con, bool prefer_height)
Called when a floating window is created or resized.
Definition: floating.c:75
void floating_disable(Con *con)
Disables floating mode for the given container by re-attaching the container to its old parent.
Definition: floating.c:427
void floating_center(Con *con, Rect rect)
Centers a floating con above the specified rect.
Definition: floating.c:536
void toggle_floating_mode(Con *con, bool automatic)
Calls floating_enable() for tiling containers and floating_disable() for floating containers.
Definition: floating.c:464
void floating_resize(Con *floating_con, uint32_t x, uint32_t y)
Sets size of the CT_FLOATING_CON to specified dimensions.
Definition: floating.c:774
bool floating_maybe_reassign_ws(Con *con)
Checks if con’s coordinates are within its workspace and re-assigns it to the actual workspace if not...
Definition: floating.c:497
void floating_move_to_pointer(Con *con)
Moves the given floating con to the current pointer position.
Definition: floating.c:545
bool floating_enable(Con *con, bool automatic)
Enables floating mode for the given container by detaching it from its parent, creating a new contain...
Definition: floating.c:226
bool floating_reposition(Con *con, Rect newrect)
Repositions the CT_FLOATING_CON to have the coordinates specified by newrect, but only if the coordin...
Definition: floating.c:747
void ipc_shutdown(shutdown_reason_t reason, int exempt_fd)
Calls shutdown() on each socket and closes it.
Definition: ipc.c:208
void ipc_send_workspace_event(const char *change, Con *current, Con *old)
For the workspace events we send, along with the usual "change" field, also the workspace container i...
Definition: ipc.c:1614
void ipc_send_barconfig_update_event(Barconfig *barconfig)
For the barconfig update events, we send the serialized barconfig.
Definition: ipc.c:1659
struct pending_marks * marks
bool json_validate(const char *buf, const size_t len)
Returns true if the provided JSON could be parsed by yajl.
Definition: load_layout.c:560
json_content_t json_determine_content(const char *buf, const size_t len)
Definition: load_layout.c:587
void tree_append_json(Con *con, const char *buf, const size_t len, char **errormsg)
Definition: load_layout.c:620
int shmlog_size
Definition: log.c:46
bool get_debug_logging(void)
Checks if debug logging is active.
Definition: log.c:203
void init_logging(void)
Initializes logging by creating an error logfile in /tmp (or XDG_RUNTIME_DIR, see get_process_filenam...
Definition: log.c:82
void set_debug_logging(const bool _debug_logging)
Set debug logging.
Definition: log.c:211
void purge_zerobyte_logfile(void)
Deletes the unused log files.
Definition: log.c:352
const int default_shmlog_size
Definition: main.c:78
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_free(Match *match)
Frees the given match.
Definition: match.c:267
bool match_matches_window(Match *match, i3Window *window)
Check if a match data structure matches the given window.
Definition: match.c:87
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:282
void tree_move(Con *con, direction_t direction)
Moves the given container in the given direction.
Definition: move.c:249
Output * get_output_from_string(Output *current_output, const char *output_str)
Returns an 'output' corresponding to one of left/right/down/up or a specific output name.
Definition: output.c:33
void output_push_sticky_windows(Con *old_focus)
Iterates over all outputs and pushes sticky windows to the currently visible workspace on that output...
Definition: output.c:77
Con * output_get_content(Con *output)
Returns the output container below the given output container.
Definition: output.c:16
Output * get_output_for_con(Con *con)
Returns the output for the given con.
Definition: output.c:57
bool regex_matches(struct regex *regex, const char *input)
Checks if the given regular expression matches the given input and returns true if it does.
Definition: regex.c:73
void render_con(Con *con)
"Renders" the given container (and its children), meaning that all rects are updated correctly.
Definition: render.c:42
bool resize_find_tiling_participants(Con **current, Con **other, direction_t direction, bool both_sides)
Definition: resize.c:70
double percent_for_1px(Con *con)
Calculate the minimum percent needed for the given container to be at least 1 pixel.
Definition: resize.c:129
bool resize_neighboring_cons(Con *first, Con *second, int px, int ppt)
Resize the two given containers using the given amount of pixels or percentage points.
Definition: resize.c:144
void restore_open_placeholder_windows(Con *parent)
Open placeholder windows for all children of parent.
bool scratchpad_show(Con *con)
Either shows the top-most scratchpad window (con == NULL) or shows the specified con (if it is scratc...
Definition: scratchpad.c:85
void scratchpad_move(Con *con)
Moves the specified window to the __i3_scratch workspace, making it floating and setting the appropri...
Definition: scratchpad.c:19
void start_application(const char *command, bool no_startup_id)
Starts the given application by passing it through a shell.
Definition: startup.c:133
void startup_sequence_rename_workspace(const char *old_name, const char *new_name)
Renames workspaces that are mentioned in the startup sequences.
Definition: startup.c:259
struct Con * focused
Definition: tree.c:13
struct Con * croot
Definition: tree.c:12
void tree_next(Con *con, direction_t direction)
Changes focus in the given direction.
Definition: tree.c:587
bool level_up(void)
Moves focus one level up.
Definition: tree.c:386
bool level_down(void)
Moves focus one level down.
Definition: tree.c:409
Con * get_tree_next_sibling(Con *con, position_t direction)
Get the previous / next sibling.
Definition: tree.c:629
Con * tree_open_con(Con *con, i3Window *window)
Opens an empty container in the current container.
Definition: tree.c:149
struct all_cons_head all_cons
Definition: tree.c:15
void tree_split(Con *con, orientation_t orientation)
Splits (horizontally or vertically) the given container by creating a new container which contains th...
Definition: tree.c:327
orientation_t orientation_from_direction(direction_t direction)
Convert a direction to its corresponding orientation.
Definition: util.c:465
int ws_name_to_number(const char *name)
Parses the workspace name as a number.
Definition: util.c:109
void kill_nagbar(pid_t nagbar_pid, bool wait_for_it)
Kills the i3-nagbar process, if nagbar_pid != -1.
Definition: util.c:396
void i3_restart(bool forget_layout)
Restart i3 in-place appends -a to argument list to disable autostart.
Definition: util.c:287
bool parse_long(const char *str, long *out, int base)
Converts a string into a long using strtol().
Definition: util.c:418
bool rect_equals(Rect a, Rect b)
Definition: util.c:59
ssize_t slurp(const char *path, char **buf)
Slurp reads path in its entirety into buf, returning the length of the file or -1 if the file could n...
Definition: util.c:436
bool layout_from_name(const char *layout_str, layout_t *out)
Set 'out' to the layout_t value for the given layout.
Definition: util.c:82
direction_t direction_from_orientation_position(orientation_t orientation, position_t position)
Convert orientation and position to the corresponding direction.
Definition: util.c:481
Con * get_existing_workspace_by_num(int num)
Returns the workspace with the given number or NULL if such a workspace does not exist.
Definition: workspace.c:44
Con * workspace_get(const char *num)
Returns a pointer to the workspace with the given number (starting at 0), creating the workspace if n...
Definition: workspace.c:127
Con * workspace_next_on_output(void)
Returns the next workspace on the same output.
Definition: workspace.c:686
Con * workspace_back_and_forth_get(void)
Returns the previously focused workspace con, or NULL if unavailable.
Definition: workspace.c:811
Con * get_existing_workspace_by_name(const char *name)
Returns the workspace with the given name or NULL if such a workspace does not exist.
Definition: workspace.c:30
void workspace_show(Con *workspace)
Switches to the given workspace.
Definition: workspace.c:417
bool workspace_is_visible(Con *ws)
Returns true if the workspace is currently visible.
Definition: workspace.c:303
Con * workspace_prev(void)
Returns the previous workspace.
Definition: workspace.c:620
void workspace_back_and_forth(void)
Focuses the previously focused workspace.
Definition: workspace.c:798
void workspace_move_to_output(Con *ws, Output *output)
Move the given workspace to the specified output.
Definition: workspace.c:963
Con * workspace_prev_on_output(void)
Returns the previous workspace on the same output.
Definition: workspace.c:741
Con * workspace_next(void)
Returns the next workspace.
Definition: workspace.c:557
void workspace_show_by_name(const char *num)
Looks up the workspace by name and switches to it.
Definition: workspace.c:549
char * previous_workspace_name
Stores a copy of the name of the last used workspace for the workspace back-and-forth switching.
Definition: workspace.c:19
Con * get_assigned_output(const char *name, long parsed_num)
Returns the first output that is assigned to a workspace specified by the given name or number.
Definition: workspace.c:84
void update_shmlog_atom(void)
Set up the SHMLOG_PATH atom.
Definition: x.c:1399
void x_set_i3_atoms(void)
Sets up i3 specific atoms (I3_SOCKET_PATH and I3_CONFIG_PATH)
Definition: x.c:1413
void cmd_criteria_init(I3_CMD)
Initializes the specified 'Match' data structure and the initial state of commands....
#define I3_CMD
The beginning of the prototype for every cmd_ function.
Definition: commands.h:17
@ C_RELOAD
position_t
Definition: data.h:59
@ AFTER
Definition: data.h:60
@ BEFORE
Definition: data.h:59
layout_t
Container layouts.
Definition: data.h:90
@ L_SPLITH
Definition: data.h:97
mark_mode_t
Definition: data.h:84
@ MM_ADD
Definition: data.h:85
@ MM_REPLACE
Definition: data.h:84
orientation_t
Definition: data.h:56
@ VERT
Definition: data.h:58
@ HORIZ
Definition: data.h:57
fullscreen_mode_t
Fullscreen modes.
Definition: data.h:590
@ CF_OUTPUT
Definition: data.h:591
@ CF_GLOBAL
Definition: data.h:592
border_style_t
Definition: data.h:61
@ BS_NONE
Definition: data.h:62
@ BS_PIXEL
Definition: data.h:63
@ BS_NORMAL
Definition: data.h:61
@ KILL_CLIENT
Definition: data.h:69
@ KILL_WINDOW
Definition: data.h:68
direction_t
Definition: data.h:52
@ D_RIGHT
Definition: data.h:53
@ D_LEFT
Definition: data.h:52
@ D_UP
Definition: data.h:54
@ D_DOWN
Definition: data.h:55
@ SHUTDOWN_REASON_RESTART
Definition: ipc.h:101
struct _i3String i3String
Opaque data structure for storing strings.
Definition: libi3.h:48
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
const char * i3string_as_utf8(i3String *str)
Returns the UTF-8 encoded version of the i3String.
#define LOG(fmt,...)
Definition: libi3.h:94
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
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...
char * resolve_tilde(const char *path)
This function resolves ~ in pathnames.
#define I3STRING_FREE(str)
Securely i3string_free by setting the pointer to NULL to prevent accidentally using freed memory.
Definition: libi3.h:242
json_content_t
Definition: load_layout.h:15
@ JSON_CONTENT_UNKNOWN
Definition: load_layout.h:18
@ JSON_CONTENT_WORKSPACE
Definition: load_layout.h:27
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:347
#define TAILQ_END(head)
Definition: queue.h:337
#define TAILQ_INIT(head)
Definition: queue.h:360
#define TAILQ_INSERT_TAIL(head, elm, field)
Definition: queue.h:376
#define TAILQ_FIRST(head)
Definition: queue.h:336
#define TAILQ_REMOVE(head, elm, field)
Definition: queue.h:402
#define TAILQ_NEXT(elm, field)
Definition: queue.h:338
#define TAILQ_EMPTY(head)
Definition: queue.h:344
#define TAILQ_LAST(head, headname)
Definition: queue.h:339
#define TAILQ_ENTRY(type)
Definition: queue.h:327
#define GREP_FIRST(dest, head, condition)
Definition: util.h:38
#define FREE(pointer)
Definition: util.h:47
#define STARTS_WITH(string, needle)
Definition: util.h:25
Con * con
Definition: commands.c:131
Holds an intermediate represenation of the result of a call to any command.
bool workspace_auto_back_and_forth
Automatic workspace back and forth switching.
int default_border_width
int default_floating_border_width
char * ipc_socket_path
Definition: configuration.h:95
border_style_t default_border
The default border style for new windows.
border_style_t default_floating_border
The default border style for new floating windows.
Holds the status bar configuration (i3bar).
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...
Stores a rectangle, for example the size of a window, the child window etc.
Definition: data.h:155
uint32_t height
Definition: data.h:159
uint32_t x
Definition: data.h:156
uint32_t y
Definition: data.h:157
uint32_t width
Definition: data.h:158
An Output is a physical output on your graphics driver.
Definition: data.h:360
Con * con
Pointer to the Con which represents this output.
Definition: data.h:380
A 'Window' is a type which contains an xcb_window_t and all the related information (hints like _NET_...
Definition: data.h:393
int height_increment
Definition: data.h:457
bool name_x_changed
Flag to force re-rendering the decoration upon changes.
Definition: data.h:418
xcb_window_t id
Definition: data.h:394
int width_increment
Definition: data.h:456
enum Window::@13 dock
Whether the window says it is a dock window.
struct regex * mark
Definition: data.h:500
Con * con_id
Definition: data.h:524
Definition: data.h:594
char * name
Definition: data.h:595
A 'Con' represents everything from the X11 root window down to a single X11 window.
Definition: data.h:604
struct Con * parent
Definition: data.h:636
double percent
Definition: data.h:665
struct Rect rect
Definition: data.h:640
enum Con::@20 type
bool sticky
Definition: data.h:692
layout_t layout
Definition: data.h:708
int num
the workspace number, if this Con is of type CT_WORKSPACE and the workspace is not a named workspace ...
Definition: data.h:634
struct Window * window
Definition: data.h:671
enum Con::@22 scratchpad_state
char * title_format
The format with which the window's name should be displayed.
Definition: data.h:653
border_style_t border_style
Definition: data.h:709
char * name
Definition: data.h:650
struct deco_render_params * deco_render_params
Cache for the decoration rendering.
Definition: data.h:677