Aptana and Titanium menu bar problem with Ubuntu 13.10 [duplicate]
Here is what worked for me:
sudo -H gedit /usr/share/applications/eclipse.desktop
update it to:
[Desktop Entry]
Version=1.0
Name=Eclipse
Exec=env UBUNTU_MENUPROXY= eclipse
Terminal=false
Icon=/opt/eclipse/icon.xpm
Type=Application
Categories=IDE;Development
X-Ayatana-Desktop-Shortcuts=NewWindow
[NewWindow Shortcut Group]
Name=New Window
Exec=env UBUNTU_MENUPROXY= eclipse
TargetEnvironment=Unity
For me this worked for Aptana 3.4.2
sudo -H gedit ~/.local/share/applications/aptana3.desktop
Path depends on how you have installed Aptana. It could also be in /usr/share/applications/
[Desktop Entry]
Version=3.0
Name=Aptana Studio 3
Comment=My Favorite IDE
Exec=env UBUNTU_MENUPROXY= /home/xxx/Programs/Aptana_Studio_3/AptanaStudio3
Icon=/home/xxx/Programs/Aptana_Studio_3/icon_64x64.xpm
Terminal=false
Type=Application
Categories=Utility;Application;IDE;Development;
Important to note : Exec=env UBUNTU_MENUPROXY= /home/xxx/Programs/Aptana_Studio_3/AptanaStudio3
Change your Exec
property and put the path to your Aptana launch file.
This will override your Unity menu and you will have a result like this:
Menus will be inside of your window, with all drop-downs working.