4

Possible Duplicate:
How to remove the Mail icon indicator applet?

I have an indicator, I think the messaging menu, that I'd really like to get rid of:

enter image description here

How can I stop it from starting and kill it if it's already running?

Naftuli Kay
  • 4,226

1 Answers1

5

From a terminal run sudo apt-get remove indicator-messages
The next time you login it will be gone.

duffydack
  • 7,344
  • Is there a process I can kill when it's actually running? It might get reinstalled again if another program depends on it, and I'd like to try and remove it from startup so that it will never start on login, no matter what. – Naftuli Kay Jan 27 '12 at 18:37
  • Looking at the rdepends, I believe just removing the indicator-messages-gtk2 package will be enough, as it leaves the indicator-messages package installed but it won't show up on your panel, and very few packages depend on it by the look of it. – duffydack Jan 27 '12 at 18:54
  • You can also exclude a package so it is never installed. – Bruno Pereira Jan 27 '12 at 18:57
  • What to do if i want it back? just for info.... – kernel_panic Mar 11 '12 at 09:43
  • @sanjayasanjuubuntu sudo apt-get install indicator-messages indicator-messages-gtk2 – duffydack Mar 11 '12 at 11:56