3

I have tried all relevant Settings choices, including "xset s off; xset s noblank; xset -dpms; xrandr --output HDMI-1 --brightness 1.0" as ordinary user and root, but the screen still dims itself occasionally at random. How can I permanently turn OFF screen dimming?

There must be some code in the Ubuntu installation to do this!

Maybe something in /etc?

7 Answers7

1

I have the same problem. I opened a bug on ubuntu's launchpad. Hoping they fix it.

Interestingly the bug stopped happening on this particular kernel version: 5.11.0-16-generic. Now it's back again.

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1938477

0

Based on the Ubuntu help-page, it seems there are some settings that you can check in the Power Saving section of the Power settings.

Per official Ubuntu helppage: https://help.ubuntu.com/stable/ubuntu-help/power-whydim.html.en

If it is possible to set the brightness of your screen, it will dim when the computer is idle in order to save power. When you start using the computer again, the screen will brighten.

To stop the screen from dimming itself:

Open the Activities overview and start typing Power.

Click Power to open the panel.

Switch the Dim Screen When Inactive switch to off in the Power Saving section.

Bish
  • 1
0

As this is a perspective hasn't been discussed yet in this post, you might just have a setting that you don't want. You may have automatic brightness on, which changes the brightness depending on how bright the space around you is. In my opinion, ubuntu isn't the best at it, and it doesn't do it smoothly. This is made for laptops, so if you have a desktop, it's pointless.

You can change this in the settings app, under brightness.

AFT
  • 1,687
0

Same problem here! Kubuntu 20.04 dims randomly, even I have all the power saving options disabled. I noticed some strange things in this behaviour:

  • When de screen dims, if I go to "Power saving" options, if I move slightly or touch a little bit the brightness slider (which is correctly set top right) and click Apply, the screen returns back to its normal brightness. Brightness slider
  • When the screen its also wrongly dimmed, if I increase the brightness using the function keys on my keyboard, it returns to its brightness, but from then on the brightness indicator keeps appearing randomly on screen. Brightness indicator I wonder if all the problem will be related to my Graphics card controller module: amdgpu. When I hadn't this module installed, my laptop was unusable: very low resolution and many other problems I don't remember. My graphics card is reported by lspci as a "Advanced Micro Devices, Inc. [AMD/ATI] Renoir (rev c3)"

Thanks.

0

I am using kubuntu 22 and in my case I have detected that the system set dynamic contrast option in the configuration of my additional monitor. I uncheked the option and that corrects the dim behaviour.

0

Editing /usr/share/X11/xorg.conf.d/10-quirks.conf to ignore Video Bus resolved the problem I had on Ubuntu Desktop 23.10 where my laptop LCD screen brightness changed randomly every few seconds.

Add the section below to /usr/share/X11/xorg.conf.d/10-quirks.conf

Section "InputClass"
        Identifier "Spooky Ghosts"
        MatchProduct "Video Bus"
        Option "Ignore" "on"
EndSection

I found this solution discussed here: random event changes screen brightness automatically

J.T.
  • 397
0

In my case the issue was solved by going to the Power settings and disabling

Automatic Screen Brightness: Screen brightness adjusts to the surrounding light.

For some reason the laptop was reacting too aggressively to minute changes in lighting in a dim room.

tarikki
  • 111