I have installed redshift using apt-get.
I started it up in a terminal window, and then accidentally killed the terminal. Redshift did not stop running itself. My screen is most certainly still under the influence of redshift.
I open Linux Mint system monitor, and I could not find anything that I thought was redshift. Certainly not anything named redshift.
So how do I go about killing redshift?
To have the screen colour return to normal, type this in Terminal:
From the documentation:
I found the clue in this answer.
Seems that redshift is not running anymore since you killed the terminal BUT the last screen settings keep being there constantly.
So you have to reset your screen manually. I'm citing:
So in your case if you want to keep redshift anyway you don't have to reinstall and uninstall it. Just use the command
to reset the display color.
use redshift -h to see all the available flag but there is no such flag to stop or kill it. The way I have killed the process is below
pidof redshift
kill -9 id_from_previous_command
id_from_previous_command will be the id of the process
-9 is for killing the process immediately