2009-02-14 02:33:31 +01:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
|
*
|
|
|
|
|
* (c) 2009 Michael Stapelberg and contributors
|
|
|
|
|
*
|
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
2009-02-14 01:36:12 +01:00
|
|
|
|
#include <sys/wait.h>
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
|
|
|
|
#include "i3.h"
|
|
|
|
|
|
|
|
|
|
/*
|
2009-02-14 01:36:12 +01:00
|
|
|
|
* Starts the given application by passing it through a shell. We use double fork
|
|
|
|
|
* to avoid zombie processes. As the started application’s parent exits (immediately),
|
|
|
|
|
* the application is reparented to init (process-id 1), which correctly handles
|
|
|
|
|
* childs, so we don’t have to do it :-).
|
|
|
|
|
*
|
|
|
|
|
* The shell is determined by looking for the SHELL environment variable. If it
|
|
|
|
|
* does not exist, /bin/sh is used.
|
2009-02-13 19:04:45 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-14 01:36:12 +01:00
|
|
|
|
void start_application(const char *command) {
|
2009-02-14 02:33:31 +01:00
|
|
|
|
if (fork() == 0) {
|
|
|
|
|
/* Child process */
|
|
|
|
|
if (fork() == 0) {
|
|
|
|
|
/* Stores the path of the shell */
|
|
|
|
|
static const char *shell = NULL;
|
2009-02-14 01:36:12 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
if (shell == NULL)
|
|
|
|
|
if ((shell = getenv("SHELL")) == NULL)
|
|
|
|
|
shell = "/bin/sh";
|
2009-02-14 01:36:12 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* This is the child */
|
|
|
|
|
execl(shell, shell, "-c", command, NULL);
|
|
|
|
|
/* not reached */
|
|
|
|
|
}
|
|
|
|
|
exit(0);
|
|
|
|
|
}
|
|
|
|
|
wait(0);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Checks a generic cookie for errors and quits with the given message if there
|
|
|
|
|
* was an error.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void check_error(xcb_connection_t *connection, xcb_void_cookie_t cookie, char *err_message) {
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_generic_error_t *error = xcb_request_check(connection, cookie);
|
|
|
|
|
if (error != NULL) {
|
|
|
|
|
fprintf(stderr, "ERROR: %s : %d\n", err_message , error->error_code);
|
|
|
|
|
xcb_disconnect(connection);
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
2009-02-13 19:04:45 +01:00
|
|
|
|
}
|