On Ubuntu 11.10, when on battery, the screen dims after 10 seconds of inactivity. This is annoying because it is too short. Is there anyway to increase this timeout?
I know I can disable it, but that is not what I want.
This command should set the time to 60 seconds:
gsettings set org.gnome.settings-daemon.plugins.power idle-dim-time 60
In earlier Ubuntu versions, this setting can be found with the gconf-editor under gnome-power-manager. See also this thread.
The answer marked above from 'lumbric' no longer works for Ubuntu 14.04.
If you need to do this from a command (e.g. for a script wrapping something that plays video), you now need to run:
gsettings set org.gnome.desktop.session idle-delay <seconds>
also useful in such a case might be disabling the screen lock:
gsettings set org.gnome.desktop.screensaver lock-enabled false
idle-delay is currently set to 300 seconds, while the screen dims after 30 already. I'm guessing idle-delay is the time before the screensaver is activated? Not the time until screen brightness is reduced?
– Kees-Jan
Oct 26 '22 at 10:51
idle-delay key is the amount of time before screen goes blank (and locks the screen too, if lock-enabled is on). In Ubuntu 24.04 this has the side effect of increasing the dim timeout because it appears the screen dims when it reaches half the idle-delay; for example, if idle-delay is 1800 the screen dims at 900 at least that's what is seemed when I played around with the key.
– Daniel C
Oct 09 '24 at 14:10
In 12.04, the setting using GUI now exists via System Settings → Brightness and Lock.
This works in ubuntu 24.04:
gsettings set org.gnome.settings-daemon.plugins.power idle-brightness 100
Apparently there is no way to disable this 30 second idle timer, so we simply configure the reduced brightness to the same value as it was before, by using the above command.
Setting only the idle-dim to false doesn't fix it, as the screen still dims after 30 seconds. I think this is the one exposed in UI controls. It can be verified in terminal using the following get command:
gsettings get org.gnome.settings-daemon.plugins.power idle-dim
I am not sure where the 30 seconds timer is coming from, but setting idle-brightness to 100 fixes it for now, and we can all get back to work.
idle-delay via gsettings). In your case, if dim switches on after 30 sec then maybe you're idle-delay is set to 1 min. Increase it to, for example, 2 min and dim will kick in at approx. 1 min mark. (My idle-delay is 30 min, dim kicks in at ~15 min.)
– Daniel C
Oct 09 '24 at 14:23
gconf-editordoes not exist in newer Ubuntus any more. Usedconf-editorinstead. – Karl Frisk Nov 22 '12 at 14:51