Page 1 of 1

Application Porting request

Posted: Sun Feb 27, 2011 3:54 pm
by fuorviatos
Hello there :)

There is a great appllication called webilder. An applet for automatic wallpaper download and rotating.
Originally written for KDE, GNOME; Xfce. The code stands on python.
Unfortunately the applet part of the program (a gnome applet) won't collaborate with lxpanel.

I'm here to ask if anyone would do this great favor of porting the applet to work in Lxde too. It would be great.
I'm in touch with the author. He's open to help but at the same time very busy person.

You can find all the details here http://www.webilder.org

Thank you in advance

Re: Application Porting request

Posted: Fri Apr 22, 2011 7:12 pm
by pacoportables
i want to change automatic wallpaper en knoppix 6.4.4,this include konqueror,nautilus-panel and nautilus-preferences-desktop,here choose wallpaper or background.xml
but desktop nautilus stay under desktop-lxde.and i don't know kill it
how i do?
thanks

Re: Application Porting request

Posted: Wed Oct 12, 2011 6:12 pm
by pacoportables
ok i find script that do it in lxde :
#!/bin/bash

DIR=/home/IMAGENES <------- ruta de las imagenes que quieres pasar automagicamente
FLOOR=1
RANGE=`ls -1 "$DIR"/*.jpg | wc | awk '// {print $1}'`

number=0

while [ 1 -eq 1 ]; do

number=$RANDOM
while [ "$number" -le $FLOOR ]; do
number=$RANDOM
done
let "number %= $RANGE" # Scales $number down within $RANGE.
COUNTER=1
for X in "$DIR"/*.jpg
do
if [ $number -eq $COUNTER ]; then
pcmanfm --set-wallpaper "$X"
fi
COUNTER=$(($COUNTER+1))
done
COUNTER=1
sleep 5m
done