Windows 7 Library Icon

If you want to change the icon of your custom library in the windows 7 file explorer you have to edit a file with your favourite editor. I found the file under the following url: C:Users<username>AppDataRoamingMicrosoftWindowsLibraries<library-name> There I added <iconReference>C:usrlocaleclipse_indigoeclipse.exe</iconReference> after “<isLibraryPinned>true</isLibraryPinned>”

Windows 7 Library Icon Read More »

jboss-web.xml validated with its dtd

I wanted to use the dtd of jboss-web.xml as code completion only works with a schema in eclipse and I don’t like warnings about missing schemas anyway. So here is an example jboss-web.xml that is validated with it’s dtd. <?xml version=”1.0″ encoding=”UTF-8″?> <!DOCTYPE jboss-web PUBLIC “http://www.jboss.org/j2ee/dtd” “http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd”> <jboss-web> <context-root>test</context-root> </jboss-web> You can also download the

jboss-web.xml validated with its dtd Read More »

Menu Items have no icons in Ubuntu 12.04/gnome3

Some time ago I noticed that several programs have no icons in menus though they always had. I really didn’t like the lack of icons in eclipse so I was looking for a solution for this. I found two working solutions. Install dconf-tools and run dconf-editor to set two keys to true: org.gnome.desktop.interface.menus-have-icons org.gnome.desktop.interface.buttons-have-icons Install

Menu Items have no icons in Ubuntu 12.04/gnome3 Read More »