Application Porting request

The standard panel of LXDE - http://wiki.lxde.org/en/LXPanel
Locked
fuorviatos
Posts: 1
Joined: Sun Feb 27, 2011 3:37 pm

Application Porting request

Post 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
pacoportables
Posts: 3
Joined: Fri Apr 22, 2011 6:42 pm

Re: Application Porting request

Post 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
pacoportables
Posts: 3
Joined: Fri Apr 22, 2011 6:42 pm

Re: Application Porting request

Post 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
Locked