Add a --no-startup-id flag for exec (command), exec (config), exec_always (config)
This commit is contained in:
parent
726f2a1e5a
commit
bbfbd28dfa
|
@ -218,6 +218,9 @@ struct Binding {
|
||||||
struct Autostart {
|
struct Autostart {
|
||||||
/** Command, like in command mode */
|
/** Command, like in command mode */
|
||||||
char *command;
|
char *command;
|
||||||
|
/** no_startup_id flag for start_application(). Determines whether a
|
||||||
|
* startup notification context/ID should be created. */
|
||||||
|
bool no_startup_id;
|
||||||
TAILQ_ENTRY(Autostart) autostarts;
|
TAILQ_ENTRY(Autostart) autostarts;
|
||||||
TAILQ_ENTRY(Autostart) autostarts_always;
|
TAILQ_ENTRY(Autostart) autostarts_always;
|
||||||
};
|
};
|
||||||
|
|
|
@ -25,8 +25,11 @@
|
||||||
* The shell is determined by looking for the SHELL environment variable. If
|
* The shell is determined by looking for the SHELL environment variable. If
|
||||||
* it does not exist, /bin/sh is used.
|
* it does not exist, /bin/sh is used.
|
||||||
*
|
*
|
||||||
|
* The no_startup_id flag determines whether a startup notification context
|
||||||
|
* (and ID) should be created, which is the default and encouraged behavior.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
void start_application(const char *command);
|
void start_application(const char *command, bool no_startup_id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called by libstartup-notification when something happens
|
* Called by libstartup-notification when something happens
|
||||||
|
|
|
@ -1507,8 +1507,19 @@ restart_state:
|
||||||
exec:
|
exec:
|
||||||
TOKEXEC STR
|
TOKEXEC STR
|
||||||
{
|
{
|
||||||
|
char *command = $2;
|
||||||
|
bool no_startup_id = false;
|
||||||
|
if (strncasecmp($2, "--no-startup-id ", strlen("--no-startup-id ")) == 0) {
|
||||||
|
no_startup_id = true;
|
||||||
|
/* We need to make a copy here, otherwise we leak the
|
||||||
|
* --no-startup-id bytes in the beginning of the string */
|
||||||
|
command = sstrdup(command + strlen("--no-startup-id "));
|
||||||
|
free($2);
|
||||||
|
}
|
||||||
|
|
||||||
struct Autostart *new = smalloc(sizeof(struct Autostart));
|
struct Autostart *new = smalloc(sizeof(struct Autostart));
|
||||||
new->command = $2;
|
new->command = command;
|
||||||
|
new->no_startup_id = no_startup_id;
|
||||||
TAILQ_INSERT_TAIL(&autostarts, new, autostarts);
|
TAILQ_INSERT_TAIL(&autostarts, new, autostarts);
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
@ -1516,8 +1527,19 @@ exec:
|
||||||
exec_always:
|
exec_always:
|
||||||
TOKEXEC_ALWAYS STR
|
TOKEXEC_ALWAYS STR
|
||||||
{
|
{
|
||||||
|
char *command = $2;
|
||||||
|
bool no_startup_id = false;
|
||||||
|
if (strncasecmp($2, "--no-startup-id ", strlen("--no-startup-id ")) == 0) {
|
||||||
|
no_startup_id = true;
|
||||||
|
/* We need to make a copy here, otherwise we leak the
|
||||||
|
* --no-startup-id bytes in the beginning of the string */
|
||||||
|
command = sstrdup(command + strlen("--no-startup-id "));
|
||||||
|
free($2);
|
||||||
|
}
|
||||||
|
|
||||||
struct Autostart *new = smalloc(sizeof(struct Autostart));
|
struct Autostart *new = smalloc(sizeof(struct Autostart));
|
||||||
new->command = $2;
|
new->command = command;
|
||||||
|
new->no_startup_id = no_startup_id;
|
||||||
TAILQ_INSERT_TAIL(&autostarts_always, new, autostarts_always);
|
TAILQ_INSERT_TAIL(&autostarts_always, new, autostarts_always);
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
|
@ -389,8 +389,15 @@ operation:
|
||||||
exec:
|
exec:
|
||||||
TOK_EXEC STR
|
TOK_EXEC STR
|
||||||
{
|
{
|
||||||
printf("should execute %s\n", $2);
|
char *command = $2;
|
||||||
start_application($2);
|
bool no_startup_id = false;
|
||||||
|
if (strncasecmp($2, "--no-startup-id ", strlen("--no-startup-id ")) == 0) {
|
||||||
|
no_startup_id = true;
|
||||||
|
command += strlen("--no-startup-id ");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("should execute %s, no_startup_id = %d\n", command, no_startup_id);
|
||||||
|
start_application(command, no_startup_id);
|
||||||
free($2);
|
free($2);
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
|
@ -635,7 +635,7 @@ int main(int argc, char *argv[]) {
|
||||||
struct Autostart *exec;
|
struct Autostart *exec;
|
||||||
TAILQ_FOREACH(exec, &autostarts, autostarts) {
|
TAILQ_FOREACH(exec, &autostarts, autostarts) {
|
||||||
LOG("auto-starting %s\n", exec->command);
|
LOG("auto-starting %s\n", exec->command);
|
||||||
start_application(exec->command);
|
start_application(exec->command, exec->no_startup_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -643,7 +643,7 @@ int main(int argc, char *argv[]) {
|
||||||
struct Autostart *exec_always;
|
struct Autostart *exec_always;
|
||||||
TAILQ_FOREACH(exec_always, &autostarts_always, autostarts_always) {
|
TAILQ_FOREACH(exec_always, &autostarts_always, autostarts_always) {
|
||||||
LOG("auto-starting (always!) %s\n", exec_always->command);
|
LOG("auto-starting (always!) %s\n", exec_always->command);
|
||||||
start_application(exec_always->command);
|
start_application(exec_always->command, exec_always->no_startup_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Start i3bar processes for all configured bars */
|
/* Start i3bar processes for all configured bars */
|
||||||
|
@ -653,7 +653,7 @@ int main(int argc, char *argv[]) {
|
||||||
sasprintf(&command, "i3bar --bar_id=%s --socket=\"%s\"",
|
sasprintf(&command, "i3bar --bar_id=%s --socket=\"%s\"",
|
||||||
barconfig->id, current_socketpath);
|
barconfig->id, current_socketpath);
|
||||||
LOG("Starting bar process: %s\n", command);
|
LOG("Starting bar process: %s\n", command);
|
||||||
start_application(command);
|
start_application(command, true);
|
||||||
free(command);
|
free(command);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,44 +63,50 @@ static void startup_timeout(EV_P_ ev_timer *w, int revents) {
|
||||||
* The shell is determined by looking for the SHELL environment variable. If it
|
* The shell is determined by looking for the SHELL environment variable. If it
|
||||||
* does not exist, /bin/sh is used.
|
* does not exist, /bin/sh is used.
|
||||||
*
|
*
|
||||||
|
* The no_startup_id flag determines whether a startup notification context
|
||||||
|
* (and ID) should be created, which is the default and encouraged behavior.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
void start_application(const char *command) {
|
void start_application(const char *command, bool no_startup_id) {
|
||||||
/* Create a startup notification context to monitor the progress of this
|
|
||||||
* startup. */
|
|
||||||
SnLauncherContext *context;
|
SnLauncherContext *context;
|
||||||
context = sn_launcher_context_new(sndisplay, conn_screen);
|
|
||||||
sn_launcher_context_set_name(context, "i3");
|
|
||||||
sn_launcher_context_set_description(context, "exec command in i3");
|
|
||||||
/* Chop off everything starting from the first space (if there are any
|
|
||||||
* spaces in the command), since we don’t want the parameters. */
|
|
||||||
char *first_word = sstrdup(command);
|
|
||||||
char *space = strchr(first_word, ' ');
|
|
||||||
if (space)
|
|
||||||
*space = '\0';
|
|
||||||
sn_launcher_context_initiate(context, "i3", first_word, last_timestamp);
|
|
||||||
free(first_word);
|
|
||||||
|
|
||||||
/* Trigger a timeout after 60 seconds */
|
if (!no_startup_id) {
|
||||||
struct ev_timer *timeout = scalloc(sizeof(struct ev_timer));
|
/* Create a startup notification context to monitor the progress of this
|
||||||
ev_timer_init(timeout, startup_timeout, 60.0, 0.);
|
* startup. */
|
||||||
timeout->data = context;
|
context = sn_launcher_context_new(sndisplay, conn_screen);
|
||||||
ev_timer_start(main_loop, timeout);
|
sn_launcher_context_set_name(context, "i3");
|
||||||
|
sn_launcher_context_set_description(context, "exec command in i3");
|
||||||
|
/* Chop off everything starting from the first space (if there are any
|
||||||
|
* spaces in the command), since we don’t want the parameters. */
|
||||||
|
char *first_word = sstrdup(command);
|
||||||
|
char *space = strchr(first_word, ' ');
|
||||||
|
if (space)
|
||||||
|
*space = '\0';
|
||||||
|
sn_launcher_context_initiate(context, "i3", first_word, last_timestamp);
|
||||||
|
free(first_word);
|
||||||
|
|
||||||
LOG("startup id = %s\n", sn_launcher_context_get_startup_id(context));
|
/* Trigger a timeout after 60 seconds */
|
||||||
|
struct ev_timer *timeout = scalloc(sizeof(struct ev_timer));
|
||||||
|
ev_timer_init(timeout, startup_timeout, 60.0, 0.);
|
||||||
|
timeout->data = context;
|
||||||
|
ev_timer_start(main_loop, timeout);
|
||||||
|
|
||||||
/* Save the ID and current workspace in our internal list of startup
|
LOG("startup id = %s\n", sn_launcher_context_get_startup_id(context));
|
||||||
* sequences */
|
|
||||||
Con *ws = con_get_workspace(focused);
|
|
||||||
struct Startup_Sequence *sequence = scalloc(sizeof(struct Startup_Sequence));
|
|
||||||
sequence->id = sstrdup(sn_launcher_context_get_startup_id(context));
|
|
||||||
sequence->workspace = sstrdup(ws->name);
|
|
||||||
sequence->context = context;
|
|
||||||
TAILQ_INSERT_TAIL(&startup_sequences, sequence, sequences);
|
|
||||||
|
|
||||||
/* Increase the refcount once (it starts with 1, so it will be 2 now) for
|
/* Save the ID and current workspace in our internal list of startup
|
||||||
* the timeout. Even if the sequence gets completed, the timeout still
|
* sequences */
|
||||||
* needs the context (but will unref it then) */
|
Con *ws = con_get_workspace(focused);
|
||||||
sn_launcher_context_ref(context);
|
struct Startup_Sequence *sequence = scalloc(sizeof(struct Startup_Sequence));
|
||||||
|
sequence->id = sstrdup(sn_launcher_context_get_startup_id(context));
|
||||||
|
sequence->workspace = sstrdup(ws->name);
|
||||||
|
sequence->context = context;
|
||||||
|
TAILQ_INSERT_TAIL(&startup_sequences, sequence, sequences);
|
||||||
|
|
||||||
|
/* Increase the refcount once (it starts with 1, so it will be 2 now) for
|
||||||
|
* the timeout. Even if the sequence gets completed, the timeout still
|
||||||
|
* needs the context (but will unref it then) */
|
||||||
|
sn_launcher_context_ref(context);
|
||||||
|
}
|
||||||
|
|
||||||
LOG("executing: %s\n", command);
|
LOG("executing: %s\n", command);
|
||||||
if (fork() == 0) {
|
if (fork() == 0) {
|
||||||
|
@ -108,7 +114,8 @@ void start_application(const char *command) {
|
||||||
setsid();
|
setsid();
|
||||||
if (fork() == 0) {
|
if (fork() == 0) {
|
||||||
/* Setup the environment variable(s) */
|
/* Setup the environment variable(s) */
|
||||||
sn_launcher_context_setup_child_process(context);
|
if (!no_startup_id)
|
||||||
|
sn_launcher_context_setup_child_process(context);
|
||||||
|
|
||||||
/* Stores the path of the shell */
|
/* Stores the path of the shell */
|
||||||
static const char *shell = NULL;
|
static const char *shell = NULL;
|
||||||
|
@ -125,10 +132,12 @@ void start_application(const char *command) {
|
||||||
}
|
}
|
||||||
wait(0);
|
wait(0);
|
||||||
|
|
||||||
/* Change the pointer of the root window to indicate progress */
|
if (!no_startup_id) {
|
||||||
if (xcursor_supported)
|
/* Change the pointer of the root window to indicate progress */
|
||||||
xcursor_set_root_cursor(XCURSOR_CURSOR_WATCH);
|
if (xcursor_supported)
|
||||||
else xcb_set_root_cursor(XCURSOR_CURSOR_WATCH);
|
xcursor_set_root_cursor(XCURSOR_CURSOR_WATCH);
|
||||||
|
else xcb_set_root_cursor(XCURSOR_CURSOR_WATCH);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue