Answers:
不知道是否有GUI方式可以执行此操作,但这会起作用:
gconftool --toggle /apps/nm-applet/suppress-wireless-networks-available
这基本上是编辑Gnome的“注册表”,以切换您在单击该按钮时设置的值。
gconf-editor
。由于某种原因,我认为gconf-editor被dconf-editor取代了。
No value found for key /apps/nm-applet/suppress-wireless-networks-available
在您的主目录中编辑gnome配置文件,/home/<your account>/.gconf/apps/nm-applet/%gconf.xml
并将相应的行更改为false应该可以解决问题:
<?xml version="1.0"?>
<gconf>
...
<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>
gt;
是错误的吧?