I use latest Ubuntu 11.04 which has Unity desktop. I am learning to use Emacs 23.

As you know, Unity has top panel. I want to enable global menu bar for Emacs so that I could save valuable screen space. (I use small screen laptop)

How to enable global menu bar? Your help will be much appreciated. Thank you.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

appmenu-gtk (which provides the global menu bar) specifically blacklisted emacs since it does not play nicely together so unfortunately you probably can't use it with emacs.

link|improve this answer
@ alexmurray 'unfortunately you probably can't use it with emacs' what do you mean? Didn't get you. – neokya Sep 21 '11 at 17:39
As I said, the developers have specifically blacklisted emacs from being able to show its menu in the global menu bar - so you won't be able to get emacs to use the global menu bar. – alexmurray Sep 22 '11 at 4:22
feedback
  1. Use your favorite editor to open this file: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
  2. Find the word "emacs"
  3. Change "emacs" to other word
  4. Save the file
  5. sudo ldconfig
link|improve this answer
feedback

Cleaner way to circument the blacklist:

ln -s /usr/bin/emacs somewhere_on_PATH/emacs-with-global-menu

any name except "emacs" works.

You might need workaround for updating menus from http://code.google.com/p/gnome2-globalmenu/issues/detail?id=357#c8 - don't know if still relevant, or if that's the only problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.