summaryrefslogtreecommitdiff
path: root/tabbed.c
diff options
context:
space:
mode:
Diffstat (limited to 'tabbed.c')
-rw-r--r--tabbed.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/tabbed.c b/tabbed.c
index 7f4d9d9..93938b6 100644
--- a/tabbed.c
+++ b/tabbed.c
@@ -784,8 +784,13 @@ spawn(const Arg *arg) {
if(dpy)
close(ConnectionNumber(dpy));
setsid();
- execvp(cmd[0], cmd);
- fprintf(stderr, "tabbed: execvp %s", cmd[0]);
+ if(arg && arg->v) {
+ execvp(((char **)arg->v)[0], (char **)argv->v);
+ fprintf(stderr, "tabbed: execvp %s", ((char **)arg->v)[0]);
+ } else {
+ execvp(cmd[0], cmd);
+ fprintf(stderr, "tabbed: execvp %s", cmd[0]);
+ }
perror(" failed");
exit(0);
}