Results 1 to 10 of 16

Thread: Got something you want fixed?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    May 2004
    Location
    Wellington, NZ
    Posts
    477

    Screensaver

    The attached is a slight alteration on Embeem's screensave package. It will now blink the power LED when activated. By default it will activate after the picture has been paused for 30 seconds (configurable via a -t option). The source is included.
    Attached Files Attached Files

  2. #2
    Join Date
    Mar 2004
    Location
    Wellington, NZ
    Posts
    573
    Hi Thomson,

    Ooo I've been looking for something like this.

    How do I set this up to run all the time in the background?

    also

    [TiVo [p0] /var/hack/bin]# screensave -t

    just gives me...

    screensave: option requires an argument -- t

    There doesn't appear to be a readme file with the arguments. Just wondering what they are?

    Just tried it without any args and works good

  3. #3
    Join Date
    May 2004
    Location
    Wellington, NZ
    Posts
    477
    Quote Originally Posted by zollymonsta
    How do I set this up to run all the time in the background?
    To start in the background just add the following to your rc.sysinit.author (the parameter after the -t is the timeout):

    Code:
    /var/hack/bin/screensave -t 60 >/dev/null 2>&1 &
    Technically you do not need the ">/dev/null 2>&1" stuff as the application does not have any output, but it helps to get into the habit...

    ">/dev/null" writes the standard output to the null device (ie it throws it away), and "2>&1" writes all error messages (file descriptor 2) to the same place that the standard output (file descriptor 1) is going... ie it also gets thrown away.
    Last edited by thomson; 30-04-2005 at 10:19 AM.

  4. #4
    Join Date
    Mar 2004
    Location
    Wellington, NZ
    Posts
    573
    Quote Originally Posted by thomson
    To start in the background just add the following to your rc.sysinit.author (the parameter after the -t is the timeout):

    Code:
    /var/hack/bin/screensave -t 60 >/dev/null 2>&1 &
    Technically you do not need the ">/dev/null 2>&1" stuff as the application does not have any output, but it helps to get into the habit...

    ">/dev/null" writes the standard output to the null device (ie it throws it away), and "2>&1" writes all error messages (file descriptor 2) to the same place that the standard output (file descriptor 1) is going... ie it also gets thrown away.
    Thanks.. you da man!! I've suggested this be added to the final OzTiVo iso image. Just rebooting now.. *crosses fingers*

Similar Threads

  1. ANNOUNCE: OzTiVo startup animation fixed.
    By petestrash in forum Software Upgrades/Mods
    Replies: 13
    Last Post: 08-10-2008, 01:03 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •