如何在 GNOME Shell 中重新启用已禁用的网络通知?

如何在 GNOME Shell 中重新启用已禁用的网络通知?

我正在使用 Ubuntu 12.04 LTS。
我最近禁用了(不小心按了“不再显示”按钮)GNOME Shell 上的某些网络通知。有(我记得的):

  1. “GSM 网络 - 您现在已在家庭网络上注册”
  2. <Network Profile>- 连接已建立”

现在,无论是在 Unity 还是 GNOME Shell 上,这些通知都没有显示,感觉不对劲。我该怎么做才能重新启用这些已禁用的通知?谢谢。

答案1

12.10 - Dconf

运行以下命令:

gsettings set org.gnome.nm-applet disable-disconnected-notifications "false"
gsettings set org.gnome.nm-applet disable-connected-notifications "false"

或者打开dconf-编辑器安装 dconf-tools并向下滚动到▸▸org并取消选中并在那里进行设置。gnomenm-appletdisable-connected-notificationsdisable-disconnected-notifications

数据共享中心


11.10 和 12.04 - Gconf

gconf-编辑器 安装 gconf-editor允许您编辑网络管理器通知。

滚动到那里/ ▸ apps ▸ nm-applet并取消选中disable-connected-notifications设置。

格康夫

或者命令行方法:

gconftool -s /apps/nm-applet/disable-disconnected-notifications --type=bool false
gconftool -s /apps/nm-applet/disable-connected-notifications --type=bool false

答案2

GNOME正在过渡到dconf相反,使用dconf-editorapt package进行编辑dconf-tools。的设置nm-applet位于/org/gnome/nm-applet

相关内容