For a script, I would need handlr open to keep the terminal busy while the default application process is still running, so that another command is run when the process is terminated. xdg-open does this, but it seems handlr open immediately detaches the terminal from the application. I have tried using handlr open "$@" & in my ~/.local/bin/xdg-open replacement for vanilla /usr/bin/xdg-open, but that did not help.
For a script, I would need
handlr open
to keep the terminal busy while the default application process is still running, so that another command is run when the process is terminated.xdg-open
does this, but it seemshandlr open
immediately detaches the terminal from the application. I have tried usinghandlr open "$@" &
in my~/.local/bin/xdg-open
replacement for vanilla/usr/bin/xdg-open
, but that did not help.