Eclipse Neon icon size in Ubuntu 16.04 hidpi

I have read that Eclipse Neon has now support for hidpi but icons are extremely small when using a hidpi notebook in Ubuntu 16.04.

Is there any command line argument or environment variable that I have to set so it works?


Solution 1:

At least in my case (ASUS UX303UB, Eclipse Neon 4.6.0RC1, Ubuntu 16.04), it was possible to get proper icons by adding:

-Dswt.autoScale=175

at the end of $ECLIPSE_HOME/eclipse.ini

Solution 2:

For me the following worked:

GDK_DPI_SCALE=0.5 GDK_SCALE=2 eclipse

Setting GDK_SCALE to 2 alone fixed the icon size but made all text huge. I had to set GDK_DPI_SCALE to 0.5 counter the effect on the font size.

Solution 3:

If you want to create a launcher, use the following in the command editor (adapted from Zoltan):

env GDK_DPI_SCALE=0.4 env GDK_SCALE=2 eclipse

I'm using it on a 4k 15.6' display.