| Author |
Message |
jason.b.c

Joined: 08 Feb 2006 Posts: 751 Location: Marshfield,MO
|
Posted: Fri 30 Dec 2011, 08:01 Post subject:
a stripped down version , for digital pic frame project.. |
|
does a stripped version exist that i could use ?
i wanna make me a digital picture frame from an old laptop i have here , it has busted hinges... LOL
_________________ Puppy is Awesome..!!!!

|
|
Back to top
|
|
 |
harii4

Joined: 30 Jan 2009 Posts: 443 Location: La Porte City, IA , U.S.A.
|
Posted: Fri 30 Dec 2011, 10:13 Post subject:
|
|
you could try:
pUPnGO - 6Mb ISO - Basic Building Block Puplet
http://www.murga-linux.com/puppy/viewtopic.php?p=592688#592688
techno's microsaurus? [He might want to think about the name, as it's already in use by a webdesigner!]
http://www.murga-linux.com/puppy/viewtopic.php?p=590822#590822
or an bare bones pup.
_________________ 3.01 Fat Free / Fire Hydrant featherweight/ TXZ_pup / 431JP2012
----------------------------------------------------------------------------------------
Peace and Justice are two sides of the same coin.
|
|
Back to top
|
|
 |
jason.b.c

Joined: 08 Feb 2006 Posts: 751 Location: Marshfield,MO
|
Posted: Sat 31 Dec 2011, 05:08 Post subject:
|
|
thanks for answering , do you know if either of these will still run the puppy xscreensaver package? in other words , not so stripped that they won't ..
_________________ Puppy is Awesome..!!!!

|
|
Back to top
|
|
 |
8-bit

Joined: 03 Apr 2007 Posts: 3012 Location: Oregon
|
Posted: Sat 31 Dec 2011, 05:50 Post subject:
|
|
One important thing you want to check is the ability to turn off screen blanking if it is an option in BIOS. Otherwise, your slideshow of a directory of pictures that loops back to the start may end with the screen going black.
I think there is a utility called "No Blank Screen that displays a YES and NO button with YES disabling screen blanking and NO turning it back on.
But you do not want any surprises so be sure to check that BIOS under the power options.
|
|
Back to top
|
|
 |
technosaurus

Joined: 18 May 2008 Posts: 3843
|
Posted: Sat 31 Dec 2011, 05:55 Post subject:
|
|
you don't even _need_ a screensaver - this should work | Code: | #!/bin/sh
IMAGEDIR=/usr/share/backgrounds
for IMAGE in $IMAGEDIR/*.jpg ; do
echo '<?xml version="1.0"?><JWM>
<Desktops count="2" width="2" height="1">
<Desktop name="1,1">
<Background type="image">'"${IMAGE}"'</Background>
</Desktop>
</Desktops>
</JWM>' > $HOME/.jwmrc
jwm -restart
sleep 5
done
$0 &#will keep running this file over and over |
_________________ Puppy Web Desktop Now with pet packages - Pet Packaging 100 & 101
|
|
Back to top
|
|
 |
jason.b.c

Joined: 08 Feb 2006 Posts: 751 Location: Marshfield,MO
|
Posted: Sat 31 Dec 2011, 09:10 Post subject:
|
|
| technosaurus wrote: | you don't even _need_ a screensaver - this should work | Code: | #!/bin/sh
IMAGEDIR=/usr/share/backgrounds
for IMAGE in $IMAGEDIR/*.jpg ; do
echo '<?xml version="1.0"?><JWM>
<Desktops count="2" width="2" height="1">
<Desktop name="1,1">
<Background type="image">'"${IMAGE}"'</Background>
</Desktop>
</Desktops>
</JWM>' > $HOME/.jwmrc
jwm -restart
sleep 5
done
$0 &#will keep running this file over and over |
|
hhmmm interesting..
and this a puppy with just JWM??
_________________ Puppy is Awesome..!!!!

|
|
Back to top
|
|
 |
|