web-dev-qa-db-ja.com

「ネットワーク切断」ポップアップを無効にする方法は?

会社にネットワークの問題があり、ネットワークが切断されていることがよくあります。 Ubuntu(12.04)が切断されるたびに、このイベントを通知するポップアップが画面の右隅に表示されます。これは非常に頻繁に発生する場合、本当に迷惑です。これを無効にするにはどうすればよいですか?

enter image description here

15
COil

12.04では、gconftool(またはnm-applet)コマンドを使用して、gconftool-2のgconfデータベースエントリを介してその動作を切り替えることができます。

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

同様に、対応するconnected通知も無効にしたいでしょう。

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

を使用して現在の設定を確認できます

gconftool -a /apps/nm-applet



Ubuntuの後のバージョンの回答を求めている人のために、@ Josは14.04で設定が/org/gnome/nm-appletのメインdconfデータベースに移行され、GUI dconf-editorツールを使用して切り替えることができることを確認しました。 gsettings を使用すると、CLIによる変更が可能になります。

19
steeldriver

gsettings:-で変更できます

gsettingsは、GSettingsへのシンプルなコマンドラインインターフェイスを提供します。個々のキーの変更を取得、設定、または監視できます。

  • get現在の設定にするには、次のコマンドを実行します。

    gsettings get org.gnome.nm-applet disable-disconnected-notifications
    
  • set(有効)切断通知を無効にするには、次のコマンドを実行します。

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

ただし、次のように使用可能なすべての通知のすべての設定をgrep by gsettingsすることができます。

gsettings list-recursively | grep "notifications"

&特にschema = org.gnome.nm-appletの場合、

gsettings list-recursively org.gnome.nm-applet
8
Pandya