Open akiross opened 1 month ago
We launch each process manager in the background, which doesn't seem compatible with this feature.
I don't think we need to background the process to implement our post-process action, and in fact this feature is broken for process-compose, which takes over signal handling entirely. So maybe we can get this fixed.
Describe the bug
process-compose
has a feature that allows to "send the TUI in background" by pressing Ctrl-B (relevant issue). When TUI is on the foreground, Ctrl-B will apparently start a new shell (bash) and when that exists, the TUI will be back. I can do that when runningprocess-compose attach
, but if I usedevenv up
, Ctrl-B will flash a terminal for an instant and then it will go back to the TUI.To reproduce
devenv init
in an empty with v1.2.0while true; do sleep 1; echo "foo" ; done
devenv up
to get into process-composeVersion
devenv installed via nixpkgs. My system config is a flake.