We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It doesn't kill the process after I logout, so everytime I login, it creates a new process, because I set it as autostart.
The text was updated successfully, but these errors were encountered:
I solved it by auto-starting a bash script
killall -q redshift # Wait for process to shut down while pgrep -u $UID -x redshift >/dev/null; do sleep 1; done redshift &
Edit: You should disable the service on systemd, in my case was systemctl --user disable redshift.service
systemctl --user disable redshift.service
Sorry, something went wrong.
No branches or pull requests
It doesn't kill the process after I logout, so everytime I login, it creates a new process, because I set it as autostart.
The text was updated successfully, but these errors were encountered: