codeninja84
codeninja84

Reputation: 19

Improve Eclipse look and feel on Fedora

I am using Eclipse Neon on Fedora 24. The look and feel is not as great as Eclipse on Windows - for example, it takes a long time for the mouse pointer to become draggable when on the border of two windows. What are some potential solutions to improve this.

Thanks

Upvotes: 1

Views: 359

Answers (2)

user3219498
user3219498

Reputation: 1

Try this

https://coffeeorientedprogramming.com/2016/10/06/make-applications-eclipse-use-x11-backend-on-wayland-fedora-25/

and I modified my /usr/share/applications/elipse.desktop exec parameter, like this

Exec=env GDK_BACKEND=x11 eclipse

my eclipse.desktop =>

[Desktop Entry]
Type=Application
Name= Eclipse
Comment=Eclipse Integrated Development Environment
Icon=/opt/eclipse/icon.xpm
**Exec=env GDK_BACKEND=x11 eclipse**
Terminal=false
Categories=Development;IDE;Java;
Terminal=false
StartupNotify=true
Encoding=UTF-8

Upvotes: 0

Leo Ufimtsev
Leo Ufimtsev

Reputation: 6492

A few things to consider:

  • Sometimes certain plugins cause glitches. For example I know Javascript plugin interferes with C development sometimes. Try a fresh upstream Eclipse with a fresh workspace, ex try the latest 'maintenance' eclipse: http://download.eclipse.org/eclipse/downloads/ These often have the latest fixes.

  • If you've turned on the black theame, you could try the regular white theame as currently there are some u.i issues specific to the dark theme. ex:
    499515: [Gtk3][Dark] Click on package explorer only works on second click when dark theme is enabled https://bugs.eclipse.org/bugs/show_bug.cgi?id=499515

  • Some Window managers (ex i3) tend to introduce visual glitches in Eclipse. Try alternative window managers or the standard 'gnome' to see if there is a difference.

  • If you're running wayland, currently Eclipse is a little unstable on wayland, but port is in progress: 496923: [Wayland] Improve support for Wayland in 4.7 https://bugs.eclipse.org/bugs/show_bug.cgi?id=496923

  • You should also consider submitting a bug with more specific details of your setup, (help -> about -> installation details -> Configuration, copy and attach). To do so, go here: https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Platform Select "SWT" from Component.

  • If all else fails, I often hang out on freenode#swt, feel free to ping me there. (lufimtse)

Upvotes: 1

Related Questions