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