My monitors turn on fine when I type or shake the mouse. My issue is the lock screen with the lock screen background sometimes doesn’t even display or if it does the password field won’t show up on keyboard/mouse activity.
I’m thinking for me it has to do with nvidia drivers. I’m on “nvidia-driver.x86_64 3:570.124.06-1.el9” and it looks like the issues started happening when it upgraded to “nvidia-xconfig.x86_64 3:565.57.01-1.el9”
I just don’t know how to downgrade to that specific version.
$ find /etc/udev/rules.d /usr/lib/udev/rules.d -type f -mtime -30
/usr/lib/udev/rules.d/60-nvidia.rules
$ cat /usr/lib/udev/rules.d/60-nvidia.rules
# Device nodes are created by nvidia-modprobe, which is called by the nvidia
# DDX or other components.
# In case the DDX is not started, the device nodes are never created, so call
# nvidia-modprobe in the udev rules to cover various cases like Wayland, compute
# node without a started display or Optimus laptop.
ACTION=="add|bind", KERNEL=="nvidia", RUN+="/usr/bin/nvidia-modprobe"
# Enable runtime PM for NVIDIA VGA/3D controller devices on driver bind
ACTION=="bind", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030000", TEST=="power/control", ATTR{power/control}="auto"
ACTION=="bind", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030200", TEST=="power/control", ATTR{power/control}="auto"
# Disable runtime PM for NVIDIA VGA/3D controller devices on driver unbind
ACTION=="unbind", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030000", TEST=="power/control", ATTR{power/control}="on"
ACTION=="unbind", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030200", TEST=="power/control", ATTR{power/control}="on"