View Single Post
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#5356
Originally Posted by Yoyocx View Post
Sir Schturman, i want to change operator name and status bar clock/date color manual, can you tell me where i can edit, in statusarea.css or statusindicatormenu.css? Thanks before
Change color of clock/date:
Code:
sed -i '82 s/color*.*/color: #FFFFFF;/;94 s/color*.*/color: #FFFFFF;/g' /usr/share/themes/base/meegotouch/sysuid/style/statusarea.css
#FFFFFF = change to your color

Change color of operator name:
Code:
sed -i "/MLabelStyle#StatusIndicatorLabel {/,/color/c\\
MLabelStyle#StatusIndicatorLabel {\\
    font: \$FONT_SMALL;\\
    color: #FFFFFF; " /usr/share/themes/base/meegotouch/sysuid/style/statusarea.css
sed -i "/MLabelStyle#StatusIndicatorLabelPortrait {/,/color/c\\
MLabelStyle#StatusIndicatorLabelPortrait {\\
    font: \$FONT_SMALL;\\
    color: #FFFFFF; " /usr/share/themes/base/meegotouch/sysuid/style/statusarea.css
#FFFFFF = change to your color
 

The Following User Says Thank You to Schturman For This Useful Post: