(08-27-2018, 09:47 PM)dasos Wrote:
Oh it does? Yea, im running 6.5.22, is the config string like the other or is it different?
Syntax is:
Code:
background "[display name]"
default "-image [filename with path]"
There was also a script someone had written (forget who) to populate the backgrounds file.
Copy the following to a shell script, save it and make it executable:
Code:
#!/bin/sh
BGDIR=$HOME/Backgrounds
#cp /usr/lib/X11/system.backgrounds $HOME/.backgrounds
chmod 644 $HOME/.backgrounds
cd ${BGDIR}
for x in *.jpg *.xpm *.png *.bmp; do
case ${x} in
'*.jpg'|'*.xpm'|'*.png'|'*.bmp') ;;
*)
NAME=`echo ${x} | tr '.' ' ' | awk '{print $1}' | tr '_' ' '`
echo "" >> $HOME/.backgrounds
echo "background \""${NAME}"\"" >> $HOME/.backgrounds
echo "default \""-image ${BGDIR}/${x}"\"" >> $HOME/.backgrounds
;;
esac
done
Copy your images into ~\Backgrounds, run the script and it will populate the .backgrounds file with all the images.

R10000 195MHz, 384MB RAM, MaxIMPACT (1MB), 36GB 15k & 300GB 10k drives, new/quiet fans, 100Mb G160 NIC, IRIX 6.5.22&
![[Image: Fuelb.png]](http://forums.irixnet.org/images/smilies/nekoicons/Fuelb.png)
R14000 600MHz, 4GB RAM, V10 Graphics, 72GB 15k & 300GB 10k drives, new/quiet fans, 1Gb NIC, IRIX 6.5.30

in storage...