I'm in the same problem and came with a half (or quarter of a...) solution.
Simply issue in the terminal these commands:
$ nvidia-settings & sleep 2 && killall -v nvidia-settings
or for more convenience, you could place this on the desktop in a executable bash script:
#! /bin/bash
nvidia-settings & sleep 2 && killall -v nvidia-settings
I didn't got luck issuing this script on Startup preferences nor in .profile file on user home folder. If I use this script on .profile, desktop environment loading waits for the whole script execution (when using something like
#! /bin/bash
sleep 15
nvidia-settings & sleep 2 && killall -v nvidia-settings
...) and when it finishes, seems like that the right settings in .nvidia-settings-rc are overriden by something else
But in the meantime I have a quick way to apply my color correction.
Regards,
gksudo nvidia-settings. – NikTh Dec 14 '12 at 21:48sudo nvidia-settings --load-config-onlyworks, I also tried recompiled drivers. – Asdasd Huehue Dec 15 '12 at 13:32