web-dev-qa-db-ja.com

Xubuntuでポップアップ通知を無効にするにはどうすればよいですか?

Xubuntu 11.10ですべてのポップアップ通知を無効にするにはどうすればよいですか

試してみました:Sudo apt-get remove notify-osd

結果として

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package notify-osd is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
9
craizzz

Xubuntuはnotify-osdを使用しないため、明らかにxfce4-notifydを削除しても機能しません。

したがって、それらをremoveしたい場合は、そのパッケージを削除します。

 Sudo apt-get remove xfce4-notifyd

それらを無効にするだけの場合は、これを使用します。

 Sudo mv /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service.disabled

それを逆にするには:

 Sudo mv /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service.disabled /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service

ソース

16
Uri Herrera

このコマンドを実行して、通知で表示またはブロックする内容を編集することもできます。私はナッツを運転していたので、ドライブマウント用のSMB4Kでこれをしなければなりませんでした笑.

xfce4-notifyd-config

1
mastertwitchy

これを試して:

Sudo mv /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service.disabled
0
Chris Wayne