nsbin/bgdelay

11 lines
152 B
Plaintext
Raw Normal View History

2006-07-20 07:54:37 +00:00
IMG="$HOME/computer/images"
DELAY="2"
for pic in `find $IMG`; do
if [ ! -d $pic ]; then
wmsetbg -e $pic
sleep $DELAY
fi
done