nsbin/bgdelay
Nico Schottelius d3c6e29902 Initial commit
2006-07-20 09:54:37 +02:00

10 lines
152 B
Text
Executable file

IMG="$HOME/computer/images"
DELAY="2"
for pic in `find $IMG`; do
if [ ! -d $pic ]; then
wmsetbg -e $pic
sleep $DELAY
fi
done