19

Whilst I like the MeMenu, one thing has always bothered me about it; rather then use my actual name, it uses my username.

So, is there anyway to change this?

Braiam
  • 67,791
  • 32
  • 179
  • 269
Dante Ashton
  • 5,505

2 Answers2

19

To switch to your actual name enter the following in a console (Applications->Accessories->Terminal) or you can use the gconf-editor:

gconftool -s /system/indicator/me/display --type int 2

And to switch back:

gconftool -s /system/indicator/me/display --type int 1

It is also possible to hide the name altogether and show just the icon:

gconftool -s /system/indicator/me/display --type int 0
8128
  • 28,740
0

Remember, in some cases, using the int 0 can lead to the icon disappearing altogether, so restarting gnome-panel may be necessary for the now nameless icon to reappear.

You can find the process name to kill gnome-panel via

ps -ef | grep panel
8128
  • 28,740
Samizdata
  • 1,197