The Following User Says Thank You to chill For This Useful Post: | ||
|
2014-04-05
, 09:34
|
Posts: 1,100 |
Thanked: 2,797 times |
Joined on Apr 2011
@ Netherlands
|
#12
|
The Following 4 Users Say Thank You to ade For This Useful Post: | ||
|
2014-04-05
, 11:15
|
|
Posts: 5,028 |
Thanked: 8,613 times |
Joined on Mar 2011
|
#13
|
|
2014-04-05
, 12:51
|
Posts: 1,258 |
Thanked: 672 times |
Joined on Mar 2009
|
#14
|
The Following 5 Users Say Thank You to shadowjk For This Useful Post: | ||
|
2014-05-08
, 07:53
|
|
Posts: 386 |
Thanked: 1,094 times |
Joined on Aug 2011
@ Netherlands
|
#15
|
See: http://talk.maemo.org/showpost.php?p=622134&postcount=2
|
2014-05-08
, 08:08
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#16
|
echo 0 > /sys/devices/platform/omap2_mcspi.1/spi1.0/disable_ts
|
2014-08-24
, 14:12
|
|
Posts: 5,028 |
Thanked: 8,613 times |
Joined on Mar 2011
|
#17
|
mkdir /home/user/.disable-backlight
#!/bin/sh #Saving user's current choice of display blanking mode gconftool -g /system/osso/dsm/display/inhibit_blank_mode > /home/user/.disable-backlight/dim #Let's disable screen blanking, so it won't get "dimmed", resulting in backlight getting enabled again... #Disabling dimming and keeping blanking would be better, but settings allow only the opposite situation :( gconftool -s --type int /system/osso/dsm/display/inhibit_blank_mode 3 #Disabling ambient light sensor's influence on screen brightness, for a while... sed -ie 's/brightness-als/brightness-simple/' /etc/mce/mce.ini stop mce || exit 1 sleep 1 start mce || exit 1 sleep 2 #Saving current backlight value, and disable backlight completely cat /sys/class/backlight/acx565akm/brightness > /home/user/.disable-backlight/brightness echo 0 > /sys/class/backlight/acx565akm/brightness #bye bye exit 0
#!/bin/sh # Setting user's choice for dimming DIM=$(cat /home/user/.disable-backlight/dim) gconftool -s --type int /system/osso/dsm/display/inhibit_blank_mode $DIM #Enabling ambient light sensor's influence on screen brightness, again... sed -ie 's/brightness-simple/brightness-als/' /etc/mce/mce.ini stop mce sleep 1 start mce sleep 2 #...and enabling initial backlight BCL=$(cat /home/user/.disable-backlight/brightness) echo $BCL > /sys/class/backlight/acx565akm/brightness #bye bye exit 0
The Following 4 Users Say Thank You to Estel For This Useful Post: | ||
|
2014-08-24
, 14:25
|
Posts: 578 |
Thanked: 994 times |
Joined on Dec 2012
|
#18
|
The Following 2 Users Say Thank You to elros34 For This Useful Post: | ||
|
2014-08-26
, 15:43
|
|
Posts: 5,028 |
Thanked: 8,613 times |
Joined on Mar 2011
|
#19
|
The Following User Says Thank You to Estel For This Useful Post: | ||
|
2014-08-26
, 21:33
|
Posts: 252 |
Thanked: 221 times |
Joined on Jul 2010
|
#20
|
The Following User Says Thank You to chill For This Useful Post: | ||
21.2011.38-1Smaemo7 (CSSU Stable)
2.6.28.10power53 (not overclocked)
Yes, I search before posting.
Last edited by chill; 2014-08-20 at 01:59.