Join Today
+ Reply to Thread
Results 1 to 10 of 10
  1. #1
    Join Date
    Mar 2005
    Posts
    2,341

    Default Clocker (Screensaver) Neo vers. + some questions...

    i installed the Clocker (screensaver) Neo installer version on my e680(not i) and it works, but one thing is.. it's shows the time and pics(gif's with animation ok) just then when i tap on the screen after the screen is black.

    can we do it that when the screen light is on for 30sec and after 15sec comes the Clocker-screensaver before the screen goes dark?

    that would be cool.

  2. Default Re: Clocker (Screensaver) Neo vers. + some questions...

    Check the config file inside the directory where Clocker was installed; you should be able to config the Clocker screensaver delay there.

    Thanks for reporting that the package works under E680(not i). If only somebody with A780 could help test the neo packages on that model...

    (I haven't even got any reports whether the neo-installer works on A780 -- which is actually the main reason to why I haven't repackaged the A780 VBA...)
    User friendly installation of native applications: http://www.dewmill.com/linuxphone.html

  3. #3
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Clocker (Screensaver) Neo vers. + some questions...

    i read once on here that the Neo installer works on the A780 too.. one of the A780 users had testet the Neo installer and it works on it.
    Motorola e680 (flashed to e680i) + 4Gb SD card + HT820 Stereo BT Hedphones,
    Ubuntu 6.10 + 7.04,
    Nokia N95 + 8Gb microSD

  4. Default Re: Clocker (Screensaver) Neo vers. + some questions...

    Yes; I just found the thread in the A780 forum! Obviosuly I have to edit my page a bit.
    User friendly installation of native applications: http://www.dewmill.com/linuxphone.html

  5. #5
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Clocker (Screensaver) Neo vers. + some questions...

    i found a way to activate the led blinking when starting the Clocker

    1.
    copy the led file and a led-script(example: ledshort.lin) into the clocker is installed, example:
    \\169.254.142.2\system\diska\.system\java\DownloadApps\MIDlet00244\Files\NeoInstalled

    2.
    modify the led-script ledshort.lin like this:

    #!/bin/bash
    delay=.2s
    cd /diska/.system/java/DownloadApps/MIDlet00244/Files/NeoInstalled
    ./led 1
    sleep $delay
    ./led 2
    sleep $delay
    ./led 3
    sleep $delay
    ./led 4
    sleep $delay
    ./led 5
    sleep $delay
    ./led 6
    sleep $delay
    ./led 7
    sleep $delay
    ./led 1
    sleep $delay
    ./led 2
    sleep $delay
    ./led 3
    sleep $delay
    ./led 4
    sleep $delay
    ./led 5
    sleep $delay
    ./led 6
    sleep $delay
    ./led 7
    sleep $delay
    ./led 0

    3.
    add ./ledshort.lin into the main.lin script

    #!/bin/bash

    # Make sure we run as root, restart othervise, keep arguments intact
    if [ "$1" == "x47restart" ]; then
    shift 1
    else
    if [ "$(id -u)" != "0" ]; then
    exec /sbin/start-stop-daemon -S -c root:root -x "$0" -- x47restart "$@"
    fi
    fi


    export QTDIR=/usr/lib/ezx
    export EZX_RES_FONT_PATH=$QTDIR/lib/fonts
    MYDIR="$(pwd -P)"



    if [ -e /tmp/clocker_autostart -a -d /ezxlocal/download/QTDownLoad/Startup ]; then
    rm -f /ezxlocal/download/QTDownLoad/Startup/clocker
    echo "#!/bin/sh" > /ezxlocal/download/QTDownLoad/Startup/clocker
    echo "cd \"$MYDIR\"" >> /ezxlocal/download/QTDownLoad/Startup/clocker
    echo "./main.lin &" >> /ezxlocal/download/QTDownLoad/Startup/clocker
    chmod +x /ezxlocal/download/QTDownLoad/Startup/clocker
    rm -f /tmp/clocker_autostart
    ./ledshort.lin
    fi



    if [ -e /tmp/clocker_noautostart -a -d /ezxlocal/download/QTDownLoad/Startup ]; then
    rm -f /ezxlocal/download/QTDownLoad/Startup/clocker
    rm -f /tmp/clocker_noautostart
    fi



    if [ ! -x ./clocker ]; then
    chmod +x ./clocker
    fi
    if [ ! -x ./alertprocess ]; then
    chmod +x ./alertprocess
    fi

    ./ledshort.lin

    exec "./clocker"




    4.
    test it out douring the first start of the Clocker the leed will blinking in all colours for 2sec long then start up the clocker.
    Motorola e680 (flashed to e680i) + 4Gb SD card + HT820 Stereo BT Hedphones,
    Ubuntu 6.10 + 7.04,
    Nokia N95 + 8Gb microSD

  6. #6
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Clocker (Screensaver) Neo vers. + some questions...

    i found a way to activate the led blinking when starting the Clocker

    1.
    copy the led file and a led-script(example: ledshort.lin) into the clocker is installed, example:
    \\169.254.142.2\system\diska\.system\java\DownloadApps\MIDlet00244\Files\NeoInstalled

    2.
    modify the led-script ledshort.lin like this:


    #!/bin/bash
    delay=.2s
    cd /diska/.system/java/DownloadApps/MIDlet00244/Files/NeoInstalled
    ./led 1
    sleep $delay
    ./led 2
    sleep $delay
    ./led 3
    sleep $delay
    ./led 4
    sleep $delay
    ./led 5
    sleep $delay
    ./led 6
    sleep $delay
    ./led 7
    sleep $delay
    ./led 1
    sleep $delay
    ./led 2
    sleep $delay
    ./led 3
    sleep $delay
    ./led 4
    sleep $delay
    ./led 5
    sleep $delay
    ./led 6
    sleep $delay
    ./led 7
    sleep $delay
    ./led 0
    3.
    add ./ledshort.lin into the main.lin script



    #!/bin/bash

    # Make sure we run as root, restart othervise, keep arguments intact
    if [ "$1" == "x47restart" ]; then
    shift 1
    else
    if [ "$(id -u)" != "0" ]; then
    exec /sbin/start-stop-daemon -S -c root:root -x "$0" -- x47restart "$@"
    fi
    fi


    export QTDIR=/usr/lib/ezx
    export EZX_RES_FONT_PATH=$QTDIR/lib/fonts
    MYDIR="$(pwd -P)"



    if [ -e /tmp/clocker_autostart -a -d /ezxlocal/download/QTDownLoad/Startup ]; then
    rm -f /ezxlocal/download/QTDownLoad/Startup/clocker
    echo "#!/bin/sh" > /ezxlocal/download/QTDownLoad/Startup/clocker
    echo "cd \"$MYDIR\"" >> /ezxlocal/download/QTDownLoad/Startup/clocker
    echo "./main.lin &" >> /ezxlocal/download/QTDownLoad/Startup/clocker
    chmod +x /ezxlocal/download/QTDownLoad/Startup/clocker
    rm -f /tmp/clocker_autostart
    ./ledshort.lin
    fi



    if [ -e /tmp/clocker_noautostart -a -d /ezxlocal/download/QTDownLoad/Startup ]; then
    rm -f /ezxlocal/download/QTDownLoad/Startup/clocker
    rm -f /tmp/clocker_noautostart
    fi



    if [ ! -x ./clocker ]; then
    chmod +x ./clocker
    fi
    if [ ! -x ./alertprocess ]; then
    chmod +x ./alertprocess
    fi

    ./ledshort.lin

    exec "./clocker"

    4.
    test it out douring the first start of the Clocker the leed will blinking in all colours for 2sec long then start up the clocker.

  7. Default Re: Clocker (Screensaver) Neo vers. + some questions...

    @y-cyas

    Good job. This looks great, but a few questions:

    1) it looks like with your script the phone will first blink, then start clocker. Is this what you want? (Or am I wrong)?; if you change the ledshort line to: './ledshort.lin &' you should get blinking and clocker at the same time.
    2) Also; I'm not sure why you need the 'cd' in ledshort.lin. The neo main.lin is always started with the 'NeoInstalled' directory as current directory.
    3) the extra ./ledshort.lin in the 'clocker_autostart' if-statement is probably unnessecary. That stuff is there just to handle autostart-installation (people who just have run 'clocker_autostart.lin'.
    User friendly installation of native applications: http://www.dewmill.com/linuxphone.html

  8. #8
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Clocker (Screensaver) Neo vers. + some questions...

    you are right, it blinks the led first and after the clocker starts...
    i only tried out until it works, i m not real programmer/scripter.. it would be better when we can do like you said -led blinking and clocker start at the same time, but i didnt know how to do that.

    i will test it out with

    ./ledshort.lin &


    maybe we can use the led in the neo-installer (when installing a program the led will blinking).

  9. #9
    Enrick Guest

    Default Re: Clocker (Screensaver) Neo vers. + some questions...

    Sorry for this newbie question
    I would like to know how to get out from screensaver on my E680?
    Which buttoms do I hve to press ?

  10. #10
    Join Date
    Mar 2005
    Posts
    2,341

    Default Re: Clocker (Screensaver) Neo vers. + some questions...

    just push the right-bottom corner of the display
    Motorola e680 (flashed to e680i) + 4Gb SD card + HT820 Stereo BT Hedphones,
    Ubuntu 6.10 + 7.04,
    Nokia N95 + 8Gb microSD


 
+ Reply to Thread

Similar Threads

  1. screensaver
    By the_bloods_city in forum E6 General Chat
    Replies: 1
    Last Post: 09-02-2008, 12:18 PM
  2. clocker 2.5?
    By akhaliq in forum E680i General Chat
    Replies: 20
    Last Post: 07-07-2006, 07:07 AM
  3. Clocker 2.5 (ScreenSaver for E680/E680I/A780)
    By intoxicated in forum E680i General Chat
    Replies: 34
    Last Post: 05-31-2006, 07:42 PM
  4. Replies: 9
    Last Post: 11-04-2005, 04:59 AM
  5. Anybody help... Problem with running " Clocker 2.5"
    By dungrock in forum E680i General Chat
    Replies: 3
    Last Post: 09-08-2005, 01:08 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Single Sign On provided by vBSSO

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1