"Blank screen" after inactivity not really blank - mouse cursor stays

The mouse showing is a symptom, not a cause of the screen not going into power saving mode. I believe (but can't prove) there are bugs in the high level screen saver settings that prevent the low level X11 screen saver from properly trigger power saving.

Also, some applications (video viewers, games, some full screen apps) disable screen blanking and power saving and the screen blanker does not automatically re-enable it reliably.

At a low level, you can check this with the xset command: xset -q and look for the DPMS settings:

  DPMS (Energy Star):
  Standby: 300    Suspend: 400    Off: 600
  DPMS is Enabled
  Monitor is On
  • If DPMS is disabled, you can enable it with xset +dpms
  • If you want to change the timings (in seconds), use for example xset dpms 300 400 600 ; the times correspond to increasingly deeper levels of power saving, which was relevant for CRTs but is probably moot for LCDs and other modern screens that power back on instantly.
  • If you just want to force the screen off immediately, xset dpms force off

Note, however, that the the last item will only work briefly if you try to activate it with a mouse. A few second delay before it will give you time to let go of the mouse before it runs.

In the past, you could set these things and forget them and it would work. However, modern graphical shells mess with them, and don't provide a direct way to set them, and a few applications change them as well, so setting them directly is not reliable unless you reset them to what you want periodically. Also, some screen blankers don't use the timeout settings in DPMS and zero those, and then run dpms force off themselves when they feel like it.

But if your screen is not powering down, you can at least use these commands to diagnose the issue.