I've got an e-ink display and would like to disable redshift on just this screen, but keep it enabled on the other two monitors. How do I setup this? Is it possible to increase contrast as well? (The Chrome high contrast extension is good for the browser.)
Asked
Active
Viewed 1,971 times
1 Answers
7
Okay, I figured out a solution for me. Run:
redshift -m randr:crtc=2 -O 9000 for the redshift-disabled third monitor (sometimes I use 8000).
And run
redshift -m randr:crtc=0 -O 3000
redshift -m randr:crtc=1 -O 3000
It's my color temperature for both the other monitors.
David Foerster
- 36,900
- 56
- 98
- 152
jeff
- 309
screenattribute which doesn't work. But putting the below section in theredshift.conffile does the job of selecting the first monitor:
– Krzysztof Tomaszewski May 18 '23 at 06:29[randr] crtc=0screentargets an "X screen" that can span through multiple monitors.crtcis the way to go if you want to target single monitors. This also did the trick for me. – Yosko Sep 24 '24 at 13:29