Icons - borrowed from Eclipse
[
Ben
]
19:12, Friday, 9 July 2004
If you're looking for a nice coherent set of icons, look no further than Eclipse. While they won't be good for all apps, they do look pretty good on white backgrounds and there are icons for every season.
I've packaged up a good chunk of them from the Eclipse tree into http://www.codehaus.org/~bwalding/eclipse-icons.zip
A browsable page is available at http://www.codehaus.org/~bwalding/eclipse-icons/
In regards to licensing, I haven't checked it thoroughly, but pretty much all of Eclipse is under fairly loose licences (Apache / BSD style). http://www.eclipse.org/legal/notice.html
The actual guts of the script is listed below.
Enjoy!
I run this on a semi-regular basis, so check the package occasionally to get the latest items.
#!/bin/sh
CVSROOT=:pserver:anonymous@dev.eclipse.org:/home/eclipse
export CVSROOT
mkdir -p eclipse
cd eclipse
cvs -q co org.eclipse.debug.ui/icons
cvs -q co org.eclipse.pde.ui/icons
cvs -q co org.eclipse.jdt.ui/icons
cvs -q co org.eclipse.vcm.ui/icons
cvs -q co org.eclipse.team.ui/icons
cvs -q co org.eclipse.ant.ui/icons
cvs -q co org.eclipse.help.ui/icons
cvs -q co org.eclipse.ui/icons
cvs -q co org.eclipse.ui.views/icons
cvs -q co org.eclipse.ui.console/icons
cd ..
rm -f ~/public_html/eclipse-icons.zip
find eclipse -name "*.gif" -print | zip ~/public_html/eclipse-icons.zip -@