aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin+git@gmail.com>2016-06-06 06:58:53 -0500
committerLibravatar Zandr Martin <zandrmartin+git@gmail.com>2016-06-06 06:58:53 -0500
commit0f1859ed25741927117b31cdd3ef2560f0327688 (patch)
treeb6c39b0757bb538e70f65dae46e41a298161cff3 /sway/commands.c
parentdocument `assign` command (diff)
downloadsway-0f1859ed25741927117b31cdd3ef2560f0327688.tar.gz
sway-0f1859ed25741927117b31cdd3ef2560f0327688.tar.zst
sway-0f1859ed25741927117b31cdd3ef2560f0327688.zip
messy, unfinished version
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 83a9e7e9..08920c1c 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -549,12 +549,19 @@ static struct cmd_results *cmd_exec_always(int argc, char **argv) {
549 close(fd[0]); 549 close(fd[0]);
550 // cleanup child process 550 // cleanup child process
551 wait(0); 551 wait(0);
552 if (*child > 0) { 552 swayc_t *ws = swayc_active_workspace();
553 sway_log(L_DEBUG, "Child process created with pid %d", *child); 553 if (*child > 0 && ws) {
554 sway_log(L_DEBUG, "Child process created with pid %d for workspace %s", *child, ws->name);
555 struct pid_workspace *pw = malloc(sizeof(struct pid_workspace));
556 pw->pid = child;
557 pw->workspace = strdup(ws->name);
558 list_add(config->pid_workspaces, pw);
554 // TODO: keep track of this pid and open the corresponding view on the current workspace 559 // TODO: keep track of this pid and open the corresponding view on the current workspace
555 // blocked pending feature in wlc 560 // blocked pending feature in wlc
561 } else {
562 free(child);
556 } 563 }
557 free(child); 564
558 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 565 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
559} 566}
560 567