回答:
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を使用した変更は、を使用して可能になりますgsettings
。
変更するにはgsettings
:-
gsettingsは、GSettingsへのシンプルなコマンドラインインターフェイスを提供します。個々のキーの変更を取得、設定、または監視できます。
現在の設定を取得するには、次のコマンドを実行します。
gsettings get org.gnome.nm-applet disable-disconnected-notifications
切断通知の無効化を設定(有効化)するには、次のコマンドを実行します。
gsettings set org.gnome.nm-applet disable-disconnected-notifications true
ただし、できます gsettings
、次のようにして、使用可能なすべての通知のすべての設定をgrepます。
gsettings list-recursively | grep "notifications"
&特にschema = org.gnome.nm-appletの場合、
gsettings list-recursively org.gnome.nm-applet