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

Dri*_*rie 4 notification gnome networking 12.04

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

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

现在在 Unity 和 GNOME Shell 上,这些通知都没有出现,感觉是错误的。我该怎么做才能重新启用那些已禁用的通知?谢谢。

jok*_*ino 6

12.10 - Dconf

运行这些命令:

gsettings set org.gnome.nm-applet disable-disconnected-notifications "false"
gsettings set org.gnome.nm-applet disable-connected-notifications "false"
Run Code Online (Sandbox Code Playgroud)

或者打开dconf-editor安装 dconf 工具并向下滚动到orggnome? nm-applet并取消选中disable-connected-notificationsdisable-disconnected-notifications设置。

会议


11.10 和 12.04 - Gconf

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

滚动到那里/ ? 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
Run Code Online (Sandbox Code Playgroud)