如何停用“网络断开”弹出窗口?


15

我们公司存在网络问题,并且网络经常断开连接。在每次断开连接时,Ubuntu(12.04)都会在屏幕的右上角显示一个弹出窗口,以通知我该事件。当它经常出现时,这确实很烦人。如何停用此功能?

在此处输入图片说明

Answers:


19

在12.04中,您应该能够nm-applet使用gconftool (或gconftool-2)命令通过gconf数据库条目来切换该行为,

gconftool --set /apps/nm-applet/disable-disconnected-notifications --type bool true

您可能还希望禁用相应的已连接通知

gconftool --set /apps/nm-applet/disable-connected-notifications --type bool true

您可以使用检查当前设置

gconftool -a /apps/nm-applet



对于寻求更高版本Ubuntu答案的用户,@ Jos已确认在14.04版中,这些设置已迁移到主dconf数据库中/org/gnome/nm-applet,可以使用GUI dconf-editor工具进行切换。使用CLI可以通过CLI进行修改gsettings


因为我不会再看到弹出窗口,所以我相信您的回答。谢谢。再见。
COil 2014年

8

您可以使用gsettings:-进行更改

gsettings为GSettings提供了一个简单的命令行界面。它使您可以获取,设置或监视单个键的更改。

  • 获取当前设置,请运行以下命令:

    gsettings get org.gnome.nm-applet disable-disconnected-notifications
    
  • 设置(启用)禁用断开连接的通知,请运行以下命令:

    gsettings set org.gnome.nm-applet disable-disconnected-notifications true
    

但是,您可以按照以下步骤grep所有可用通知所有设置gsettings

gsettings list-recursively | grep "notifications"

&专门用于schema = org.gnome.nm-applet,

gsettings list-recursively org.gnome.nm-applet
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.