On Fri, 28 Jan 2005 14:56:22 +0100, Peter Backlund wrote: > Yes, it works fine with the Bluecurve xmms skin. There is an environment > variable that lists additional directories to look for skins in, which > conveniently contains /usr/share/xmms/Skins in the livna.org package > (through an /etc/profile.d/ file), so that the BC skin can be used > immediately. Same goes for the Industrial skin, from ximian- > artwork. Would be good if something like this could be added to the profile.d: skin=$(gconftool-2 --get /apps/bmp/skin 2> /dev/null) if [ -z "$skin" -a -f /usr/share/xmms/Skins/Bluecurve-xmms.zip ]; then gconftool-2 --set /apps/bmp/skin --type string \ /usr/share/xmms/Skins/Bluecurve-xmms.zip &> /dev/null fi What it does is to make the Bluecurve skin the default if user has not set a different one already.