]> git.sur5r.net Git - i3/i3/blob - src/main.c
normalize modelines/headers across src/*.c
[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                 if (asprintf(&both, "%s %s", payload, argv[optind]) == -1)
343                     err(EXIT_FAILURE, "asprintf");
344                 free(payload);
345                 payload = both;
346             }
347             optind++;
348         }
349         LOG("Command is: %s (%d bytes)\n", payload, strlen(payload));
350         char *socket_path = socket_path_from_x11();
351         if (!socket_path) {
352             ELOG("Could not get i3 IPC socket path\n");
353             return 1;
354         }
355
356         int sockfd = socket(AF_LOCAL, SOCK_STREAM, 0);
357         if (sockfd == -1)
358             err(EXIT_FAILURE, "Could not create socket");
359
360         struct sockaddr_un addr;
361         memset(&addr, 0, sizeof(struct sockaddr_un));
362         addr.sun_family = AF_LOCAL;
363         strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path) - 1);
364         if (connect(sockfd, (const struct sockaddr*)&addr, sizeof(struct sockaddr_un)) < 0)
365             err(EXIT_FAILURE, "Could not connect to i3");
366
367         if (ipc_send_message(sockfd, strlen(payload), I3_IPC_MESSAGE_TYPE_COMMAND,
368                              (uint8_t*)payload) == -1)
369             err(EXIT_FAILURE, "IPC: write()");
370
371         uint32_t reply_length;
372         uint8_t *reply;
373         int ret;
374         if ((ret = ipc_recv_message(sockfd, I3_IPC_MESSAGE_TYPE_COMMAND,
375                                     &reply_length, &reply)) != 0) {
376             if (ret == -1)
377                 err(EXIT_FAILURE, "IPC: read()");
378             return 1;
379         }
380         printf("%.*s\n", reply_length, reply);
381         return 0;
382     }
383
384     LOG("i3 (tree) version " I3_VERSION " starting\n");
385
386     conn = xcb_connect(NULL, &conn_screen);
387     if (xcb_connection_has_error(conn))
388         errx(EXIT_FAILURE, "Cannot open display\n");
389
390     sndisplay = sn_xcb_display_new(conn, NULL, NULL);
391
392     /* Initialize the libev event loop. This needs to be done before loading
393      * the config file because the parser will install an ev_child watcher
394      * for the nagbar when config errors are found. */
395     main_loop = EV_DEFAULT;
396     if (main_loop == NULL)
397             die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
398
399     root_screen = xcb_aux_get_screen(conn, conn_screen);
400     root = root_screen->root;
401     root_depth = root_screen->root_depth;
402     xcb_get_geometry_cookie_t gcookie = xcb_get_geometry(conn, root);
403     xcb_query_pointer_cookie_t pointercookie = xcb_query_pointer(conn, root);
404
405     load_configuration(conn, override_configpath, false);
406     if (only_check_config) {
407         LOG("Done checking configuration file. Exiting.\n");
408         exit(0);
409     }
410
411     if (config.ipc_socket_path == NULL) {
412         /* Fall back to a file name in /tmp/ based on the PID */
413         if ((config.ipc_socket_path = getenv("I3SOCK")) == NULL)
414             config.ipc_socket_path = get_process_filename("ipc-socket");
415         else
416             config.ipc_socket_path = sstrdup(config.ipc_socket_path);
417     }
418
419     uint32_t mask = XCB_CW_EVENT_MASK;
420     uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
421                           XCB_EVENT_MASK_STRUCTURE_NOTIFY |         /* when the user adds a screen (e.g. video
422                                                                            projector), the root window gets a
423                                                                            ConfigureNotify */
424                           XCB_EVENT_MASK_POINTER_MOTION |
425                           XCB_EVENT_MASK_PROPERTY_CHANGE |
426                           XCB_EVENT_MASK_ENTER_WINDOW };
427     xcb_void_cookie_t cookie;
428     cookie = xcb_change_window_attributes_checked(conn, root, mask, values);
429     check_error(conn, cookie, "Another window manager seems to be running");
430
431     xcb_get_geometry_reply_t *greply = xcb_get_geometry_reply(conn, gcookie, NULL);
432     if (greply == NULL) {
433         ELOG("Could not get geometry of the root window, exiting\n");
434         return 1;
435     }
436     DLOG("root geometry reply: (%d, %d) %d x %d\n", greply->x, greply->y, greply->width, greply->height);
437
438     /* Place requests for the atoms we need as soon as possible */
439     #define xmacro(atom) \
440         xcb_intern_atom_cookie_t atom ## _cookie = xcb_intern_atom(conn, 0, strlen(#atom), #atom);
441     #include "atoms.xmacro"
442     #undef xmacro
443
444     /* Initialize the Xlib connection */
445     xlibdpy = xkbdpy = XOpenDisplay(NULL);
446
447     /* Try to load the X cursors and initialize the XKB extension */
448     if (xlibdpy == NULL) {
449         ELOG("ERROR: XOpenDisplay() failed, disabling libXcursor/XKB support\n");
450         xcursor_supported = false;
451         xkb_supported = false;
452     } else if (fcntl(ConnectionNumber(xlibdpy), F_SETFD, FD_CLOEXEC) == -1) {
453         ELOG("Could not set FD_CLOEXEC on xkbdpy\n");
454         return 1;
455     } else {
456         xcursor_load_cursors();
457         /*init_xkb();*/
458     }
459
460     /* Set a cursor for the root window (otherwise the root window will show no
461        cursor until the first client is launched). */
462     if (xcursor_supported)
463         xcursor_set_root_cursor(XCURSOR_CURSOR_POINTER);
464     else xcb_set_root_cursor(XCURSOR_CURSOR_POINTER);
465
466     if (xkb_supported) {
467         int errBase,
468             major = XkbMajorVersion,
469             minor = XkbMinorVersion;
470
471         if (fcntl(ConnectionNumber(xkbdpy), F_SETFD, FD_CLOEXEC) == -1) {
472             fprintf(stderr, "Could not set FD_CLOEXEC on xkbdpy\n");
473             return 1;
474         }
475
476         int i1;
477         if (!XkbQueryExtension(xkbdpy,&i1,&xkb_event_base,&errBase,&major,&minor)) {
478             fprintf(stderr, "XKB not supported by X-server\n");
479             return 1;
480         }
481         /* end of ugliness */
482
483         if (!XkbSelectEvents(xkbdpy, XkbUseCoreKbd,
484                              XkbMapNotifyMask | XkbStateNotifyMask,
485                              XkbMapNotifyMask | XkbStateNotifyMask)) {
486             fprintf(stderr, "Could not set XKB event mask\n");
487             return 1;
488         }
489     }
490
491     /* Setup NetWM atoms */
492     #define xmacro(name) \
493         do { \
494             xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name ## _cookie, NULL); \
495             if (!reply) { \
496                 ELOG("Could not get atom " #name "\n"); \
497                 exit(-1); \
498             } \
499             A_ ## name = reply->atom; \
500             free(reply); \
501         } while (0);
502     #include "atoms.xmacro"
503     #undef xmacro
504
505     property_handlers_init();
506
507     /* Set up the atoms we support */
508     xcb_atom_t supported_atoms[] = {
509 #define xmacro(atom) A_ ## atom,
510 #include "atoms.xmacro"
511 #undef xmacro
512     };
513     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTED, XCB_ATOM_ATOM, 32, 16, supported_atoms);
514     /* Set up the window manager’s name */
515     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 32, 1, &root);
516     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
517
518     keysyms = xcb_key_symbols_alloc(conn);
519
520     xcb_get_numlock_mask(conn);
521
522     translate_keysyms();
523     grab_all_keys(conn, false);
524
525     bool needs_tree_init = true;
526     if (layout_path) {
527         LOG("Trying to restore the layout from %s...", layout_path);
528         needs_tree_init = !tree_restore(layout_path, greply);
529         if (delete_layout_path)
530             unlink(layout_path);
531         free(layout_path);
532     }
533     if (needs_tree_init)
534         tree_init(greply);
535
536     free(greply);
537
538     /* Force Xinerama (for drivers which don't support RandR yet, esp. the
539      * nVidia binary graphics driver), when specified either in the config
540      * file or on command-line */
541     if (force_xinerama || config.force_xinerama) {
542         xinerama_init();
543     } else {
544         DLOG("Checking for XRandR...\n");
545         randr_init(&randr_base);
546     }
547
548     xcb_query_pointer_reply_t *pointerreply;
549     Output *output = NULL;
550     if (!(pointerreply = xcb_query_pointer_reply(conn, pointercookie, NULL))) {
551         ELOG("Could not query pointer position, using first screen\n");
552         output = get_first_output();
553     } else {
554         DLOG("Pointer at %d, %d\n", pointerreply->root_x, pointerreply->root_y);
555         output = get_output_containing(pointerreply->root_x, pointerreply->root_y);
556         if (!output) {
557             ELOG("ERROR: No screen at (%d, %d), starting on the first screen\n",
558                  pointerreply->root_x, pointerreply->root_y);
559             output = get_first_output();
560         }
561
562         con_focus(con_descend_focused(output_get_content(output->con)));
563     }
564
565     tree_render();
566
567     /* Create the UNIX domain socket for IPC */
568     int ipc_socket = ipc_create_socket(config.ipc_socket_path);
569     if (ipc_socket == -1) {
570         ELOG("Could not create the IPC socket, IPC disabled\n");
571     } else {
572         free(config.ipc_socket_path);
573         struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
574         ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
575         ev_io_start(main_loop, ipc_io);
576     }
577
578     /* Also handle the UNIX domain sockets passed via socket activation */
579     int fds = sd_listen_fds(1);
580     if (fds < 0)
581         ELOG("socket activation: Error in sd_listen_fds\n");
582     else if (fds == 0)
583         DLOG("socket activation: no sockets passed\n");
584     else {
585         for (int fd = SD_LISTEN_FDS_START; fd < (SD_LISTEN_FDS_START + fds); fd++) {
586             DLOG("socket activation: also listening on fd %d\n", fd);
587             struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
588             ev_io_init(ipc_io, ipc_new_client, fd, EV_READ);
589             ev_io_start(main_loop, ipc_io);
590         }
591     }
592
593     /* Set up i3 specific atoms like I3_SOCKET_PATH and I3_CONFIG_PATH */
594     x_set_i3_atoms();
595
596     struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
597     struct ev_io *xkb = scalloc(sizeof(struct ev_io));
598     struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
599     struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
600
601     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
602     ev_io_start(main_loop, xcb_watcher);
603
604
605     if (xkb_supported) {
606         ev_io_init(xkb, xkb_got_event, ConnectionNumber(xkbdpy), EV_READ);
607         ev_io_start(main_loop, xkb);
608
609         /* Flush the buffer so that libev can properly get new events */
610         XFlush(xkbdpy);
611     }
612
613     ev_check_init(xcb_check, xcb_check_cb);
614     ev_check_start(main_loop, xcb_check);
615
616     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
617     ev_prepare_start(main_loop, xcb_prepare);
618
619     xcb_flush(conn);
620
621     manage_existing_windows(root);
622
623     if (!disable_signalhandler)
624         setup_signal_handler();
625
626     /* Ignore SIGPIPE to survive errors when an IPC client disconnects
627      * while we are sending him a message */
628     signal(SIGPIPE, SIG_IGN);
629
630     /* Autostarting exec-lines */
631     if (autostart) {
632         struct Autostart *exec;
633         TAILQ_FOREACH(exec, &autostarts, autostarts) {
634             LOG("auto-starting %s\n", exec->command);
635             start_application(exec->command);
636         }
637     }
638
639     /* Autostarting exec_always-lines */
640     struct Autostart *exec_always;
641     TAILQ_FOREACH(exec_always, &autostarts_always, autostarts_always) {
642         LOG("auto-starting (always!) %s\n", exec_always->command);
643         start_application(exec_always->command);
644     }
645
646     /* Start i3bar processes for all configured bars */
647     Barconfig *barconfig;
648     TAILQ_FOREACH(barconfig, &barconfigs, configs) {
649         char *command = NULL;
650         asprintf(&command, "i3bar --bar_id=%s --socket=\"%s\"",
651                  barconfig->id, current_socketpath);
652         LOG("Starting bar process: %s\n", command);
653         start_application(command);
654         free(command);
655     }
656
657     /* Make sure to destroy the event loop to invoke the cleeanup callbacks
658      * when calling exit() */
659     atexit(i3_exit);
660
661     ev_loop(main_loop, 0);
662 }