1

I read this question : Why is Eclipse Luna dark theme ugly?

And i followed what guari told us to do. I create a dark.sh in a same directory with eclipse executeable. This is the code :

#!/bin/bash
export SWT_GTK3=0 //0 or 1 not working
./eclipse

So i run the dark.sh from the terminal, and eclipse will be run from it. However, my side bar is still looking ugly (white, not dark).

What should i do?

UPDATE

I use dark theme (default from the eclipse)#!/bin/bash

export SWT_GTK3=0
export UBUNTU_MENUPROXY=0
./eclipse

But it still not working.

Thanks for your help.

2 Answers2

3

May be you need to try this plugin from eclipse market place -- Eclipse Color Theme

After installing Eclipse Color Theme you have to go to:

Preferences -> Appearance -> Color Theme, 

Then select the whatever theme you like...

enter image description here

bud-e
  • 195
1

Take a look at this blog post. There, @Kai suggests:

export SWT_GTK3=0 export UBUNTU_MENUPROXY=0

  • You again :) Thanks a lot, i will try this later (and will accept your answer) – Blaze Tama Nov 07 '14 at 15:17
  • Sorry, the code is not working...but people in the blog said its working...maybe i did something wrong somewhere? I updated my question, please kindly check it. Thanks – Blaze Tama Nov 07 '14 at 15:55