What's new
AMJ Bulletin Board

HOW TO: Change the time color on your home screen

D/\SH

Owner - Staff
First off, you need to have a rooted pre.

1) SSH into your pre and use these two commands:
Code:
sudo -i
mount -o remount,rw /
2) Back up the file your going to edit
Code:
cd /usr/lib/luna/system/luna-systemui/stylesheets/
cp systemui.css systemui.css.bak
3) Edit the file "systemui.css" with Vi
Code:
vi systemui.css
4) Look for the line that starts with "#date-and-time {"
Under that, add the line "color: #00ff00;" with whatever hex color you want. See below for an example.

Code:
#date-and-time {
        color: #00ff00;
        position: fixed;
        margin: 1px 0 0 0;
        top: 0;
        left: 0;
        height: 28px;
        width: 100%;
        padding: 0;
        text-align: center;
5) Remount the filesystem as read-only then restart Luna
Code:
mount -o remount ro /
stop LunaSysMgr && start LunaSysMgr
Here is a pic:

screen-1.jpg



Enjoy. :)

original info found here:
Code:
http://forums.precentral.net/web-os-development/197870-how-change-time-color-your-home-screen.html
 
Back
Top