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