9

When Gnome 3.2 told me, there are wireless networks available, I accidentally clicked "don't show this message again".

How can I reactivate this message?

speendo
  • 263

2 Answers2

4

Not sure if there's a GUI way to do this, but this will work:

gconftool --toggle /apps/nm-applet/suppress-wireless-networks-available

This basically edits the Gnome "registry" to toggle the value that you set when clicking that button.

Chuck R
  • 5,038
1

Editing the gnome configuration file in your home directory at /home/<your account>/.gconf/apps/nm-applet/%gconf.xml and change the corresponding lines to false should do the trick:

<?xml version="1.0"?>
<gconf&gt;

...

<entry name="disable-connected-notifications" mtime="<some value>" type="bool" value="false"/>
<entry name="disable-disconnected-notifications" mtime="<some value>" type="bool" value="false"/>;

...

</gconf>
Seth
  • 59,332
imalipusram
  • 117
  • 3