darians

disable the appmenu indicator in Unity for all applications

Jan 6th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. If you want to disable the Appmenu (Global Menu) for all the applications in Unity, run the following commands:
  2.  
  3. sudo su
  4. echo "export UBUNTU_MENUPROXY=0" > /etc/X11/Xsession.d/81ubuntumenuproxy
  5. Then restart your computer.
  6.  
  7.  
  8.  
  9. If you want to re-enable the AppMenu, simply remove the /etc/X11/Xsession.d/81ubuntumenuproxy file:
  10.  
  11. sudo rm /etc/X11/Xsession.d/81ubuntumenuproxy
  12. Then restart your computer.
  13.  
  14. You can also remove the AppMenu (but this might also remove the ubuntu-desktop meta package) if the above tweak doesn't work:
  15.  
  16. sudo apt-get remove appmenu-gtk indicator-applet-appmenu indicator-appmenu
  17.  
  18. If you've removed it, install it back:
  19. sudo apt-get install appmenu-gtk indicator-applet-appmenu indicator-appmenu
Add Comment
Please, Sign In to add comment