This question is related to my other question : Full dark theme for eclipse Luna in Ubuntu 14.04
So, i should run export SWT_GTK3=0
on a sh
script for eclipse, but i mistakenly run it from my ubuntu's terminal
.
I dont feel something changed for now, but i would like to make sure my system will be OK since i will need it in the near future.
Does running export SWT_GTK3=0
dangerous?
What does it do?
How to reset SWT_GTK3
to its default value?
Thanks a lot for your time.
SWT_GTK3
is actually 0, not 3 as suggested by Hami. Also, the export is not permanent: it marks a variable as "to be exported", so all the child programs of the parent program can see that environment variable. In your case, it is visible only to eclipse if you run it in the same shell. Indeed, if you runecho $SWT_GTK
in the same shell where you execute theexport
, it returns 0; if you open another shell and type the same command, it returns an empty line. – tigerjack Nov 07 '14 at 15:21