不小心点击了“不再显示此消息”-如何重新激活?


Answers:


4

不知道是否有GUI方式可以执行此操作,但这会起作用:

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

这基本上是编辑Gnome的“注册表”,以切换您在单击该按钮时设置的值。


对!我发现也可以使用gconf-editor。由于某种原因,我认为gconf-editor被dconf-editor取代了。
speendo '02

2
是的,有些程序使用dconf(尤其是在Gnome Shell中),有些程序使用gconf。希望他们下定决心= P。另外,你在使用GConf工具是正确的,尽管它比复制长/粘贴命令到终端或者Alt + F2
查克- [R

2
对我不起作用,ubuntu 15.10:No value found for key /apps/nm-applet/suppress-wireless-networks-available
doug65536 '16

1

在您的主目录中编辑gnome配置文件,/home/<your account>/.gconf/apps/nm-applet/%gconf.xml并将相应的行更改为false应该可以解决问题:

<?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>

gt;是错误的吧?
doug65536 '16
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.