Answers:
在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
。
您可以使用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