View Single Post
brontide's Avatar
Posts: 868 | Thanked: 474 times | Joined on Oct 2007 @ Capital District, NY, USA
#10
Here are the defaults from gconftool-2

Code:
~ $ gconftool-2 -R /system/osso/dsm/display
 display_on_with_charger = true
 display_brightness_level_step = 1
 display_blank_timeout = 300
 display_brightness = 1
 display_dim_timeout = 120
 max_display_brightness_levels = 5
 possible_display_dim_timeouts = [10,30,60,120]
 possible_display_blank_timeouts = [30,60,120,300]
Then we can change the lists like the following. Each value is in seconds

Code:
~ $ gconftool-2 -s --type list --list-type int /system/osso/dsm/display/possible_display_dim_timeouts [10,30,60,120,600,3600,86400]
~ $ gconftool-2 -s --type list --list-type int /system/osso/dsm/display/possible_display_blank_timeouts [30,60,120,300,600,900,3600,86400]
~ $ gconftool-2 -R /system/osso/dsm/display
 display_on_with_charger = true
 display_brightness_level_step = 1
 display_blank_timeout = 300
 display_brightness = 1
 display_dim_timeout = 120
 max_display_brightness_levels = 5
 possible_display_dim_timeouts = [10,30,60,120,600,3600,86400]
 possible_display_blank_timeouts = [30,60,120,300,600,900,3600,86400]
That should give you 10, 60, and 1440 minutes under brightness period and 10,15,60, and 1440 minutes under switch off display.
 

The Following 3 Users Say Thank You to brontide For This Useful Post: