all repos — openbox @ 0ee5660504b3d55b8fb989241a675af4f925087f

openbox fork - make it a bit more like ryudo

dont use "exec " anymore cuz then stuff like && doesn't work
Dana Jansens danakj@orodu.net
commit

0ee5660504b3d55b8fb989241a675af4f925087f

parent

728022e170bf7f0ccc20101cc53587dfcd853ee5

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M util/epist/screen.ccutil/epist/screen.cc

@@ -408,11 +408,10 @@ pid_t pid;

if ((pid = fork()) == 0) { extern char **environ; - string c = "exec " + cmd; char *const argv[] = { "sh", "-c", - const_cast<char *>(c.c_str()), + const_cast<char *>(cmd.c_str()), 0 }; // make the command run on the correct screen