]> git.sur5r.net Git - i3/i3/blob - src/main.c
a9d7141634e53d3ac86d8ab7509fec9d08e35b91
[i3/i3] / src / main.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * main.c: Initialization, main loop
8  *
9  */
10 #include <ev.h>
11 #include <fcntl.h>
12 #include <sys/types.h>
13 #include <sys/socket.h>
14 #include <sys/un.h>
15 #include "all.h"
16
17 #include "sd-daemon.h"
18
19 static int xkb_event_base;
20
21 int xkb_current_group;
22
23 extern Con *focused;
24
25 char **start_argv;
26
27 xcb_connection_t *conn;
28 /* The screen (0 when you are using DISPLAY=:0) of the connection 'conn' */
29 int conn_screen;
30
31 /* Display handle for libstartup-notification */
32 SnDisplay *sndisplay;
33
34 /* The last timestamp we got from X11 (timestamps are included in some events
35  * and are used for some things, like determining a unique ID in startup
36  * notification). */
37 xcb_timestamp_t last_timestamp = XCB_CURRENT_TIME;
38
39 xcb_screen_t *root_screen;
40 xcb_window_t root;
41 uint8_t root_depth;
42
43 struct ev_loop *main_loop;
44
45 xcb_key_symbols_t *keysyms;
46
47 /* Those are our connections to X11 for use with libXcursor and XKB */
48 Display *xlibdpy, *xkbdpy;
49
50 /* The list of key bindings */
51 struct bindings_head *bindings;
52
53 /* The list of exec-lines */
54 struct autostarts_head autostarts = TAILQ_HEAD_INITIALIZER(autostarts);
55
56 /* The list of exec_always lines */
57 struct autostarts_always_head autostarts_always = TAILQ_HEAD_INITIALIZER(autostarts_always);
58
59 /* The list of assignments */
60 struct assignments_head assignments = TAILQ_HEAD_INITIALIZER(assignments);
61
62 /* The list of workspace assignments (which workspace should end up on which
63  * output) */
64 struct ws_assignments_head ws_assignments = TAILQ_HEAD_INITIALIZER(ws_assignments);
65
66 /* We hope that those are supported and set them to true */
67 bool xcursor_supported = true;
68 bool xkb_supported = true;
69
70 /* This will be set to true when -C is used so that functions can behave
71  * slightly differently. We don’t want i3-nagbar to be started when validating
72  * the config, for example. */
73 bool only_check_config = false;
74
75 /*
76  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
77  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
78  *
79  */
80 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
81     /* empty, because xcb_prepare_cb and xcb_check_cb are used */
82 }
83
84 /*
85  * Flush before blocking (and waiting for new events)
86  *
87  */
88 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
89     xcb_flush(conn);
90 }
91
92 /*
93  * Instead of polling the X connection socket we leave this to
94  * xcb_poll_for_event() which knows better than we can ever know.
95  *
96  */
97 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
98     xcb_generic_event_t *event;
99
100     while ((event = xcb_poll_for_event(conn)) != NULL) {
101         if (event->response_type == 0) {
102             if (event_is_ignored(event->sequence, 0))
103                 DLOG("Expected X11 Error received for sequence %x\n", event->sequence);
104             else {
105                 xcb_generic_error_t *error = (xcb_generic_error_t*)event;
106                 ELOG("X11 Error received! sequence 0x%x, error_code = %d\n",
107                      error->sequence, error->error_code);
108             }
109             free(event);
110             continue;
111         }
112
113         /* Strip off the highest bit (set if the event is generated) */
114         int type = (event->response_type & 0x7F);
115
116         handle_event(type, event);
117
118         free(event);
119     }
120 }
121
122
123 /*
124  * When using xmodmap to change the keyboard mapping, this event
125  * is only sent via XKB. Therefore, we need this special handler.
126  *
127  */
128 static void xkb_got_event(EV_P_ struct ev_io *w, int revents) {
129     DLOG("Handling XKB event\n");
130     XkbEvent ev;
131
132     /* When using xmodmap, every change (!) gets an own event.
133      * Therefore, we just read all events and only handle the
134      * mapping_notify once. */
135     bool mapping_changed = false;
136     while (XPending(xkbdpy)) {
137         XNextEvent(xkbdpy, (XEvent*)&ev);
138         /* While we should never receive a non-XKB event,
139          * better do sanity checking */
140         if (ev.type != xkb_event_base)
141             continue;
142
143         if (ev.any.xkb_type == XkbMapNotify) {
144             mapping_changed = true;
145             continue;
146         }
147
148         if (ev.any.xkb_type != XkbStateNotify) {
149             ELOG("Unknown XKB event received (type %d)\n", ev.any.xkb_type);
150             continue;
151         }
152
153         /* See The XKB Extension: Library Specification, section 14.1 */
154         /* We check if the current group (each group contains
155          * two levels) has been changed. Mode_switch activates
156          * group XkbGroup2Index */
157         if (xkb_current_group == ev.state.group)
158             continue;
159
160         xkb_current_group = ev.state.group;
161
162         if (ev.state.group == XkbGroup2Index) {
163             DLOG("Mode_switch enabled\n");
164             grab_all_keys(conn, true);
165         }
166
167         if (ev.state.group == XkbGroup1Index) {
168             DLOG("Mode_switch disabled\n");
169             ungrab_all_keys(conn);
170             grab_all_keys(conn, false);
171         }
172     }
173
174     if (!mapping_changed)
175         return;
176
177     DLOG("Keyboard mapping changed, updating keybindings\n");
178     xcb_key_symbols_free(keysyms);
179     keysyms = xcb_key_symbols_alloc(conn);
180
181     xcb_get_numlock_mask(conn);
182
183     ungrab_all_keys(conn);
184     DLOG("Re-grabbing...\n");
185     translate_keysyms();
186     grab_all_keys(conn, (xkb_current_group == XkbGroup2Index));
187     DLOG("Done\n");
188 }
189
190 /*
191  * Exit handler which destroys the main_loop. Will trigger cleanup handlers.
192  *
193  */
194 static void i3_exit() {
195 /* We need ev >= 4 for the following code. Since it is not *that* important (it
196  * only makes sure that there are no i3-nagbar instances left behind) we still
197  * support old systems with libev 3. */
198 #if EV_VERSION_MAJOR >= 4
199     ev_loop_destroy(main_loop);
200 #endif
201 }
202
203 int main(int argc, char *argv[]) {
204     char *override_configpath = NULL;
205     bool autostart = true;
206     char *layout_path = NULL;
207     bool delete_layout_path = false;
208     bool force_xinerama = false;
209     bool disable_signalhandler = false;
210     static struct option long_options[] = {
211         {"no-autostart", no_argument, 0, 'a'},
212         {"config", required_argument, 0, 'c'},
213         {"version", no_argument, 0, 'v'},
214         {"help", no_argument, 0, 'h'},
215         {"layout", required_argument, 0, 'L'},
216         {"restart", required_argument, 0, 0},
217         {"force-xinerama", no_argument, 0, 0},
218         {"disable-signalhandler", no_argument, 0, 0},
219         {"get-socketpath", no_argument, 0, 0},
220         {0, 0, 0, 0}
221     };
222     int option_index = 0, opt;
223
224     setlocale(LC_ALL, "");
225
226     /* Disable output buffering to make redirects in .xsession actually useful for debugging */
227     if (!isatty(fileno(stdout)))
228         setbuf(stdout, NULL);
229
230     srand(time(NULL));
231
232     init_logging();
233
234     start_argv = argv;
235
236     while ((opt = getopt_long(argc, argv, "c:CvaL:hld:V", long_options, &option_index)) != -1) {
237         switch (opt) {
238             case 'a':
239                 LOG("Autostart disabled using -a\n");
240                 autostart = false;
241                 break;
242             case 'L':
243                 FREE(layout_path);
244                 layout_path = sstrdup(optarg);
245                 delete_layout_path = false;
246                 break;
247             case 'c':
248                 FREE(override_configpath);
249                 override_configpath = sstrdup(optarg);
250                 break;
251             case 'C':
252                 LOG("Checking configuration file only (-C)\n");
253                 only_check_config = true;
254                 break;
255             case 'v':
256                 printf("i3 version " I3_VERSION " © 2009-2011 Michael Stapelberg and contributors\n");
257                 exit(EXIT_SUCCESS);
258             case 'V':
259                 set_verbosity(true);
260                 break;
261             case 'd':
262                 LOG("Enabling debug loglevel %s\n", optarg);
263                 add_loglevel(optarg);
264                 break;
265             case 'l':
266                 /* DEPRECATED, ignored for the next 3 versions (3.e, 3.f, 3.g) */
267                 break;
268             case 0:
269                 if (strcmp(long_options[option_index].name, "force-xinerama") == 0) {
270                     force_xinerama = true;
271                     ELOG("Using Xinerama instead of RandR. This option should be "
272                          "avoided at all cost because it does not refresh the list "
273                          "of screens, so you cannot configure displays at runtime. "
274                          "Please check if your driver really does not support RandR "
275                          "and disable this option as soon as you can.\n");
276                     break;
277                 } else if (strcmp(long_options[option_index].name, "disable-signalhandler") == 0) {
278                     disable_signalhandler = true;
279                     break;
280                 } else if (strcmp(long_options[option_index].name, "get-socketpath") == 0) {
281                     char *socket_path = socket_path_from_x11();
282                     if (socket_path) {
283                         printf("%s\n", socket_path);
284                         return 0;
285                     }
286
287                     return 1;
288                 } else if (strcmp(long_options[option_index].name, "restart") == 0) {
289                     FREE(layout_path);
290                     layout_path = sstrdup(optarg);
291                     delete_layout_path = true;
292                     break;
293                 }
294                 /* fall-through */
295             default:
296                 fprintf(stderr, "Usage: %s [-c configfile] [-d loglevel] [-a] [-v] [-V] [-C]\n", argv[0]);
297                 fprintf(stderr, "\n");
298                 fprintf(stderr, "\t-a          disable autostart ('exec' lines in config)\n");
299                 fprintf(stderr, "\t-c <file>   use the provided configfile instead\n");
300                 fprintf(stderr, "\t-C          validate configuration file and exit\n");
301                 fprintf(stderr, "\t-d <level>  enable debug output with the specified loglevel\n");
302                 fprintf(stderr, "\t-L <file>   path to the serialized layout during restarts\n");
303                 fprintf(stderr, "\t-v          display version and exit\n");
304                 fprintf(stderr, "\t-V          enable verbose mode\n");
305                 fprintf(stderr, "\n");
306                 fprintf(stderr, "\t--force-xinerama\n"
307                                 "\tUse Xinerama instead of RandR.\n"
308                                 "\tThis option should only be used if you are stuck with the\n"
309                                 "\tnvidia closed source driver which does not support RandR.\n");
310                 fprintf(stderr, "\n");
311                 fprintf(stderr, "\t--get-socketpath\n"
312                                 "\tRetrieve the i3 IPC socket path from X11, print it, then exit.\n");
313                 fprintf(stderr, "\n");
314                 fprintf(stderr, "If you pass plain text arguments, i3 will interpret them as a command\n"
315                                 "to send to a currently running i3 (like i3-msg). This allows you to\n"
316                                 "use nice and logical commands, such as:\n"
317                                 "\n"
318                                 "\ti3 border none\n"
319                                 "\ti3 floating toggle\n"
320                                 "\ti3 kill window\n"
321                                 "\n");
322                 exit(EXIT_FAILURE);
323         }
324     }
325
326     /* If the user passes more arguments, we act like i3-msg would: Just send
327      * the arguments as an IPC message to i3. This allows for nice semantic
328      * commands such as 'i3 border none'. */
329     if (optind < argc) {
330         /* We enable verbose mode so that the user knows what’s going on.
331          * This should make it easier to find mistakes when the user passes
332          * arguments by mistake. */
333         set_verbosity(true);
334
335         LOG("Additional arguments passed. Sending them as a command to i3.\n");
336         char *payload = NULL;
337         while (optind < argc) {
338             if (!payload) {
339                 payload = sstrdup(argv[optind]);
340             } else {
341                 char *both;
342                 sasprintf(&both, "%s %s", payload, argv[optind]);
343                 free(payload);
344                 payload = both;
345             }
346             optind++;
347         }
348         LOG("Command is: %s (%d bytes)\n", payload, strlen(payload));
349         char *socket_path = socket_path_from_x11();
350         if (!socket_path) {
351             ELOG("Could not get i3 IPC socket path\n");
352             return 1;
353         }
354
355         int sockfd = socket(AF_LOCAL, SOCK_STREAM, 0);
356         if (sockfd == -1)
357             err(EXIT_FAILURE, "Could not create socket");
358
359         struct sockaddr_un addr;
360         memset(&addr, 0, sizeof(struct sockaddr_un));
361         addr.sun_family = AF_LOCAL;
362         strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path) - 1);
363         if (connect(sockfd, (const struct sockaddr*)&addr, sizeof(struct sockaddr_un)) < 0)
364             err(EXIT_FAILURE, "Could not connect to i3");
365
366         if (ipc_send_message(sockfd, strlen(payload), I3_IPC_MESSAGE_TYPE_COMMAND,
367                              (uint8_t*)payload) == -1)
368             err(EXIT_FAILURE, "IPC: write()");
369
370         uint32_t reply_length;
371         uint8_t *reply;
372         int ret;
373         if ((ret = ipc_recv_message(sockfd, I3_IPC_MESSAGE_TYPE_COMMAND,
374                                     &reply_length, &reply)) != 0) {
375             if (ret == -1)
376                 err(EXIT_FAILURE, "IPC: read()");
377             return 1;
378         }
379         printf("%.*s\n", reply_length, reply);
380         return 0;
381     }
382
383     LOG("i3 (tree) version " I3_VERSION " starting\n");
384
385     conn = xcb_connect(NULL, &conn_screen);
386     if (xcb_connection_has_error(conn))
387         errx(EXIT_FAILURE, "Cannot open display\n");
388
389     sndisplay = sn_xcb_display_new(conn, NULL, NULL);
390
391     /* Initialize the libev event loop. This needs to be done before loading
392      * the config file because the parser will install an ev_child watcher
393      * for the nagbar when config errors are found. */
394     main_loop = EV_DEFAULT;
395     if (main_loop == NULL)
396             die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
397
398     root_screen = xcb_aux_get_screen(conn, conn_screen);
399     root = root_screen->root;
400     root_depth = root_screen->root_depth;
401     xcb_get_geometry_cookie_t gcookie = xcb_get_geometry(conn, root);
402     xcb_query_pointer_cookie_t pointercookie = xcb_query_pointer(conn, root);
403
404     load_configuration(conn, override_configpath, false);
405     if (only_check_config) {
406         LOG("Done checking configuration file. Exiting.\n");
407         exit(0);
408     }
409
410     if (config.ipc_socket_path == NULL) {
411         /* Fall back to a file name in /tmp/ based on the PID */
412         if ((config.ipc_socket_path = getenv("I3SOCK")) == NULL)
413             config.ipc_socket_path = get_process_filename("ipc-socket");
414         else
415             config.ipc_socket_path = sstrdup(config.ipc_socket_path);
416     }
417
418     uint32_t mask = XCB_CW_EVENT_MASK;
419     uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
420                           XCB_EVENT_MASK_STRUCTURE_NOTIFY |         /* when the user adds a screen (e.g. video
421                                                                            projector), the root window gets a
422                                                                            ConfigureNotify */
423                           XCB_EVENT_MASK_POINTER_MOTION |
424                           XCB_EVENT_MASK_PROPERTY_CHANGE |
425                           XCB_EVENT_MASK_ENTER_WINDOW };
426     xcb_void_cookie_t cookie;
427     cookie = xcb_change_window_attributes_checked(conn, root, mask, values);
428     check_error(conn, cookie, "Another window manager seems to be running");
429
430     xcb_get_geometry_reply_t *greply = xcb_get_geometry_reply(conn, gcookie, NULL);
431     if (greply == NULL) {
432         ELOG("Could not get geometry of the root window, exiting\n");
433         return 1;
434     }
435     DLOG("root geometry reply: (%d, %d) %d x %d\n", greply->x, greply->y, greply->width, greply->height);
436
437     /* Place requests for the atoms we need as soon as possible */
438     #define xmacro(atom) \
439         xcb_intern_atom_cookie_t atom ## _cookie = xcb_intern_atom(conn, 0, strlen(#atom), #atom);
440     #include "atoms.xmacro"
441     #undef xmacro
442
443     /* Initialize the Xlib connection */
444     xlibdpy = xkbdpy = XOpenDisplay(NULL);
445
446     /* Try to load the X cursors and initialize the XKB extension */
447     if (xlibdpy == NULL) {
448         ELOG("ERROR: XOpenDisplay() failed, disabling libXcursor/XKB support\n");
449         xcursor_supported = false;
450         xkb_supported = false;
451     } else if (fcntl(ConnectionNumber(xlibdpy), F_SETFD, FD_CLOEXEC) == -1) {
452         ELOG("Could not set FD_CLOEXEC on xkbdpy\n");
453         return 1;
454     } else {
455         xcursor_load_cursors();
456         /*init_xkb();*/
457     }
458
459     /* Set a cursor for the root window (otherwise the root window will show no
460        cursor until the first client is launched). */
461     if (xcursor_supported)
462         xcursor_set_root_cursor(XCURSOR_CURSOR_POINTER);
463     else xcb_set_root_cursor(XCURSOR_CURSOR_POINTER);
464
465     if (xkb_supported) {
466         int errBase,
467             major = XkbMajorVersion,
468             minor = XkbMinorVersion;
469
470         if (fcntl(ConnectionNumber(xkbdpy), F_SETFD, FD_CLOEXEC) == -1) {
471             fprintf(stderr, "Could not set FD_CLOEXEC on xkbdpy\n");
472             return 1;
473         }
474
475         int i1;
476         if (!XkbQueryExtension(xkbdpy,&i1,&xkb_event_base,&errBase,&major,&minor)) {
477             fprintf(stderr, "XKB not supported by X-server\n");
478             return 1;
479         }
480         /* end of ugliness */
481
482         if (!XkbSelectEvents(xkbdpy, XkbUseCoreKbd,
483                              XkbMapNotifyMask | XkbStateNotifyMask,
484                              XkbMapNotifyMask | XkbStateNotifyMask)) {
485             fprintf(stderr, "Could not set XKB event mask\n");
486             return 1;
487         }
488     }
489
490     /* Setup NetWM atoms */
491     #define xmacro(name) \
492         do { \
493             xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name ## _cookie, NULL); \
494             if (!reply) { \
495                 ELOG("Could not get atom " #name "\n"); \
496                 exit(-1); \
497             } \
498             A_ ## name = reply->atom; \
499             free(reply); \
500         } while (0);
501     #include "atoms.xmacro"
502     #undef xmacro
503
504     property_handlers_init();
505
506     /* Set up the atoms we support */
507     xcb_atom_t supported_atoms[] = {
508 #define xmacro(atom) A_ ## atom,
509 #include "atoms.xmacro"
510 #undef xmacro
511     };
512     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTED, XCB_ATOM_ATOM, 32, 16, supported_atoms);
513     /* Set up the window manager’s name */
514     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 32, 1, &root);
515     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
516
517     keysyms = xcb_key_symbols_alloc(conn);
518
519     xcb_get_numlock_mask(conn);
520
521     translate_keysyms();
522     grab_all_keys(conn, false);
523
524     bool needs_tree_init = true;
525     if (layout_path) {
526         LOG("Trying to restore the layout from %s...", layout_path);
527         needs_tree_init = !tree_restore(layout_path, greply);
528         if (delete_layout_path)
529             unlink(layout_path);
530         free(layout_path);
531     }
532     if (needs_tree_init)
533         tree_init(greply);
534
535     free(greply);
536
537     /* Force Xinerama (for drivers which don't support RandR yet, esp. the
538      * nVidia binary graphics driver), when specified either in the config
539      * file or on command-line */
540     if (force_xinerama || config.force_xinerama) {
541         xinerama_init();
542     } else {
543         DLOG("Checking for XRandR...\n");
544         randr_init(&randr_base);
545     }
546
547     xcb_query_pointer_reply_t *pointerreply;
548     Output *output = NULL;
549     if (!(pointerreply = xcb_query_pointer_reply(conn, pointercookie, NULL))) {
550         ELOG("Could not query pointer position, using first screen\n");
551         output = get_first_output();
552     } else {
553         DLOG("Pointer at %d, %d\n", pointerreply->root_x, pointerreply->root_y);
554         output = get_output_containing(pointerreply->root_x, pointerreply->root_y);
555         if (!output) {
556             ELOG("ERROR: No screen at (%d, %d), starting on the first screen\n",
557                  pointerreply->root_x, pointerreply->root_y);
558             output = get_first_output();
559         }
560
561         con_focus(con_descend_focused(output_get_content(output->con)));
562     }
563
564     tree_render();
565
566     /* Create the UNIX domain socket for IPC */
567     int ipc_socket = ipc_create_socket(config.ipc_socket_path);
568     if (ipc_socket == -1) {
569         ELOG("Could not create the IPC socket, IPC disabled\n");
570     } else {
571         free(config.ipc_socket_path);
572         struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
573         ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
574         ev_io_start(main_loop, ipc_io);
575     }
576
577     /* Also handle the UNIX domain sockets passed via socket activation */
578     int fds = sd_listen_fds(1);
579     if (fds < 0)
580         ELOG("socket activation: Error in sd_listen_fds\n");
581     else if (fds == 0)
582         DLOG("socket activation: no sockets passed\n");
583     else {
584         for (int fd = SD_LISTEN_FDS_START; fd < (SD_LISTEN_FDS_START + fds); fd++) {
585             DLOG("socket activation: also listening on fd %d\n", fd);
586             struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
587             ev_io_init(ipc_io, ipc_new_client, fd, EV_READ);
588             ev_io_start(main_loop, ipc_io);
589         }
590     }
591
592     /* Set up i3 specific atoms like I3_SOCKET_PATH and I3_CONFIG_PATH */
593     x_set_i3_atoms();
594
595     struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
596     struct ev_io *xkb = scalloc(sizeof(struct ev_io));
597     struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
598     struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
599
600     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
601     ev_io_start(main_loop, xcb_watcher);
602
603
604     if (xkb_supported) {
605         ev_io_init(xkb, xkb_got_event, ConnectionNumber(xkbdpy), EV_READ);
606         ev_io_start(main_loop, xkb);
607
608         /* Flush the buffer so that libev can properly get new events */
609         XFlush(xkbdpy);
610     }
611
612     ev_check_init(xcb_check, xcb_check_cb);
613     ev_check_start(main_loop, xcb_check);
614
615     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
616     ev_prepare_start(main_loop, xcb_prepare);
617
618     xcb_flush(conn);
619
620     manage_existing_windows(root);
621
622     if (!disable_signalhandler)
623         setup_signal_handler();
624
625     /* Ignore SIGPIPE to survive errors when an IPC client disconnects
626      * while we are sending him a message */
627     signal(SIGPIPE, SIG_IGN);
628
629     /* Autostarting exec-lines */
630     if (autostart) {
631         struct Autostart *exec;
632         TAILQ_FOREACH(exec, &autostarts, autostarts) {
633             LOG("auto-starting %s\n", exec->command);
634             start_application(exec->command);
635         }
636     }
637
638     /* Autostarting exec_always-lines */
639     struct Autostart *exec_always;
640     TAILQ_FOREACH(exec_always, &autostarts_always, autostarts_always) {
641         LOG("auto-starting (always!) %s\n", exec_always->command);
642         start_application(exec_always->command);
643     }
644
645     /* Start i3bar processes for all configured bars */
646     Barconfig *barconfig;
647     TAILQ_FOREACH(barconfig, &barconfigs, configs) {
648         char *command = NULL;
649         sasprintf(&command, "i3bar --bar_id=%s --socket=\"%s\"",
650                   barconfig->id, current_socketpath);
651         LOG("Starting bar process: %s\n", command);
652         start_application(command);
653         free(command);
654     }
655
656     /* Make sure to destroy the event loop to invoke the cleeanup callbacks
657      * when calling exit() */
658     atexit(i3_exit);
659
660     ev_loop(main_loop, 0);
661 }