After the new stable update, login script for nvidia colors won't work

Hello,
i had in /home/USER/.config/autostart-scripts/ a bash script for nvidia color profile, but after the last stable release update, my script no longer loads :frowning:

My txt file is still there and i also tried to additional add the file in login script from KDE Config Menu, but still no success, its only showed up in /home/USER/.config/autostart/ but nothing else.

Iā€™m verified the command in the terminal still works, this is the whole script in my nvidia-color.txt file in autostart-scripts:

#!/bin/bash
nvidia-settings -l
1 Like

Have you tried delaying the script by 4 seconds by adding a sleep 4 before the nvidia-settings command?

If that works, halve the sleep value and keep halving the value to make the value smaller until it stops working and then move it up one notch. (decimal places are allowed).

:crossed_fingers:

1 Like

Do you mean like this?

#!/bin/bash
sleep 4
nvidia-settings -l
1 Like

I usually go about it like this:

#!/bin/bash
sleep 4 && nvidia-settings -l
1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.