|
2014-04-03
, 06:08
|
Posts: 34 |
Thanked: 7 times |
Joined on Mar 2014
@ Switzerland
|
#1592
|
|
2014-04-03
, 07:46
|
Posts: 594 |
Thanked: 1,094 times |
Joined on Aug 2012
@ Rhine
|
#1593
|
The Following User Says Thank You to Leinad For This Useful Post: | ||
|
2014-05-07
, 07:45
|
Posts: 1,313 |
Thanked: 2,977 times |
Joined on Jun 2011
@ Finland
|
#1594
|
The Following 2 Users Say Thank You to ajalkane For This Useful Post: | ||
|
2014-05-11
, 17:38
|
Posts: 1,313 |
Thanked: 2,977 times |
Joined on Jun 2011
@ Finland
|
#1595
|
|
2014-05-12
, 02:41
|
|
Posts: 1,552 |
Thanked: 3,108 times |
Joined on Jun 2012
@ Russia, 96
|
#1596
|
|
2014-05-17
, 01:58
|
Posts: 649 |
Thanked: 762 times |
Joined on Mar 2012
@ Ohio
|
#1597
|
Hmm, there is one nice idea in Nokia Amber (GDR2) Update for Windows Phone - sleeping clock (night clock). This mean lowpower screen clock changes it's brightness and color to dark-red (as I see). So, I've made it for our Nokia N9 using ProfileMatic.
Make AmberClock.sh
Code:#!/bin/sh #call AmberClock.sh color font size sed -i "/LockScreen MLabelStyle#LockScreenLowPowerModeClockLabel {/,/color/c\\ LockScreen MLabelStyle#LockScreenLowPowerModeClockLabel {\\ font: \$FONT_FAMILY_"$2" "$3"mm;\\ color: #"$1"; " /usr/share/themes/base/meegotouch/libsysuid-screenlock-nokia/style/libsysuid-screenlock-nokia.css sleep 1 && /sbin/initctl stop xsession/sysuid && sleep 1 && /sbin/initctl start xsession/sysuid
prefered size: minimum size: maximum size
#!/bin/sh #call AmberClock.sh color font size sed -i "/LockScreen MLabelStyle#LockScreenLowPowerModeClockLabel {/,/color/c\\ LockScreen MLabelStyle#LockScreenLowPowerModeClockLabel {\\ font: \$FONT_FAMILY_"$2" "$3"mm;\\ color: #"$1";\\ preferred-size: "$4" "$5"mm;\\ minimum-size: "$4" "$5"mm;\\ maximum-size: "$4" "$5"mm; " /usr/share/themes/base/meegotouch/libsysuid-screenlock-nokia/style/libsysuid-screenlock-nokia.css sleep 1 && /sbin/initctl stop xsession/sysuid && sleep 1 && /sbin/initctl start xsession/
|
2014-05-17
, 17:50
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#1598
|
|
2014-05-17
, 18:28
|
Posts: 649 |
Thanked: 762 times |
Joined on Mar 2012
@ Ohio
|
#1599
|
The Following User Says Thank You to imaginaryenemy For This Useful Post: | ||
|
2014-05-18
, 11:10
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#1600
|
All I can say is that a timer of three seconds made the magic in my case.
Regards.