HOW TO: Change the time color on your home screen

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • D/\SH
    Owner - Staff
    • Feb 07
    • 32484

    HOW TO: Change the time color on your home screen

    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:




    Enjoy. :)

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