web-dev-qa-db-ja.com

Unity通知は正常に見えませんか?

わかりましたので、これはパッケージが不足しているためだと思います。団結通知(例:団結がネットワークに接続していると言ったとき)は見苦しく見えます。以前は半透明のカメレオンの長方形でした。今、彼らは白であり、完全に異なっています。下の写真をご覧ください。

enter image description here

9
chad

私はそれを考え出した。 xfce4-notifydをインストールしたので、_Sudo apt-get purge xfce4-notifyd 問題を解決しました。

6
chad

名前拡張子サフィックス.disableを定義して、不要なfreedesktopデーモンに追加します。

$ grep -r org.freedesktop.Notifications /usr/share/dbus-1/services/
/usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service:Name=org.freedesktop.Notifications
/usr/share/dbus-1/services/org.freedesktop.Notifications.service:Name=org.freedesktop.Notifications
Sudo mv /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service /usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service.disable
pkill xfce4-notifyd

ソフトウェアを使用してすべての通知を順番に再開します。

mateの問題でも問題なく動作します:

xfce行をmateに置き換えます。

/usr/share/dbus-1/services/org.freedesktop.mate.Notifications.service.disable:Name=org.freedesktop.Notifications
0