Similarly to this question, I find that when a wireless mouse with low battery is plugged into a laptop running Ubuntu 18.04 on battery power, the screen automatically dims after 15 seconds of inactivity, even if the Power setting "Dim screen when inactive" is set to "Off". This doesn't make any sense to me - why would the dimming the screen help preserve power in the mouse?
15 seconds is very inconveniently short - how can I disable this automatic screen dimming? I do not have any power management programs like jupiter or tlp installed. This answer suggests running
gsettings set org.gnome.desktop.session idle-delay <seconds>
on the terminal, but that doesn't change anything for me. Disabling DPMS as suggested in this answer doesn't work either. The only thing that works is unplugging the mouse and restarting my computer, which is obviously kind of annoying.
Read your current value :
Then try :
Or if this do not work, try different values for
org.gnome.settings-daemon.plugins.power idle-brightness
org.gnome.desktop.session idle-delay
is just the delay before the screensaver activates !I guess the system see your mouse battery as a laptop battery. Udev handles peripherals and power supplies, so it is the first suspect. Sorry I cannot give you a clear solution right now, we have to find a clue of what is wrong first. Post these details, I hope it will help :
/sys/class/power_supply/
when the mouse is plugged and when it is not ?sudo udevadm monitor -p
. This will monitor events, so you need to plug the mouse after. Check if the output is the same when the battery is high or low.sudo journalctl --since=-2m
just after plugging the mouse. Likewise, check if the output is the same when the battery is high or low.You can try this Q&A: Disable "Mouse battery low" spam notification
Not having the problem you have means I can't test it though...
Have you tried restarting your PC? It helped me on 18.04. Had the same issue with 15 sec screen dimming with the setting OFF, and after a restart it's gone.
For others looking. This did the trick for me
xset -dpms # Disables Energy Star features xset s off # Disables screen saver
found solution here
https://unix.stackexchange.com/questions/329893/screen-turns-off-after-10-minutes-and-i-cant-find-out-why