Presetting the Brightness options

Asked by Paul

Hi Again,

I am trying to set up a custom image using ubuntu 16.04.

Is it possible to set the brightness settings from the Chroot? I would like to set "Turn screen off when inactive for:" to Never and possible disable the Dim screen option.

Thanks!

Question information

Language:
English Edit question
Status:
Solved
For:
Cubic Edit question
Assignee:
No assignee Edit question
Solved by:
PJSingh5000
Solved:
Last query:
Last reply:
Revision history for this message
Best PJSingh5000 (pjsingh5000) said :
#1

ALSO SEE: https://answers.launchpad.net/cubic/+question/681051

(1) Create a file called

        /usr/share/glib-2.0/schemas/90_Custom.gschema.override

(2) Add the following contents, settings values as desired. The brightness value ranges from 0-100, and the screen timeout value is in seconds (600 = 10 minutes).

        [com.ubuntu.touch.system]
        brightness = 60

        [org.gnome.desktop.session]
        idle-delay = 600

(3) Save the file, and execute

        glib-compile-schemas /usr/share/glib-2.0/schemas

Revision history for this message
Paul (cubicuser408) said :
#2

Thank you PJSingh5000!

I was able to implement these changes and am experimenting with a few more options.

Thanks.

Revision history for this message
Paul (cubicuser408) said :
#3

Thanks PJSingh5000, that solved my question.