all repos — openbox @ 3a83fe7e6cd2fa65a6f54a91bb28fa96cff24332

openbox fork - make it a bit more like ryudo

exec a requested new process via /bin/sh to allow for command line args, the same way otk::bexec does it.
Dana Jansens danakj@orodu.net
commit

3a83fe7e6cd2fa65a6f54a91bb28fa96cff24332

parent

035f7d3ff483238c801fc785fc8fd2dac0e91cfc

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

jump to
M src/openbox.ccsrc/openbox.cc

@@ -199,10 +199,8 @@ otk::Timer::destroy();

if (_restart) { if (!_restart_prog.empty()) { - const std::string &dstr = - otk::display->screenInfo(first_screen)->displayString(); - otk::putenv(const_cast<char *>(dstr.c_str())); - execlp(_restart_prog.c_str(), _restart_prog.c_str(), NULL); + otk::putenv(otk::display->screenInfo(first_screen)->displayString()); + execl("/bin/sh", "/bin/sh", "-c", _restart_prog.c_str(), NULL); perror(_restart_prog.c_str()); }