-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-c does not run command when background process? #5
Comments
It is waiting for tty input, specifically for the word 'quit' to be sent to stdin, and when a backgrounded process attempts to read STDIN it is sent a SIGSTOP. So it needs a flag to disable this, I think. Would have been nice if I thought of this before and the flag was to enable monitoring stdin for quit, it was put in there specifically for the nvim plugin. |
Hello, do you plan on adding the flag? |
I can try making a PR although i've never written a line of rust in my life |
Simple test, something like
Change system theme while this is running, file is not created. But when back into
fg
, then you see the filedark
orlight
appear. I would like this to work even in background process to change my kitty theme.The text was updated successfully, but these errors were encountered: