Use GNOME notifications instead of Ubuntu NotifyOSD
Open a terminal and copy/paste the following commands:
sudo apt-get install notification-daemon libnotify-bin
sudo mv /usr/lib/notify-osd/notify-osd /usr/lib/notify-osd/notify-osd-original
sudo ln -s /usr/lib/notification-daemon/notification-daemon /usr/lib/notify-osd/notify-osd
sudo killall notify-osd
Then, press ALT + F2 and type:
/usr/lib/notify-osd/notify-osd
And now try it out, run:
notify-send --icon=gtk-add Test "This is a test notification"
You can run that multiple times to see how it looks when you get a lot of notifications.
notification-properties
If you use the "standard" theme, the GNOME Notifications will respect your current GTK theme colors. Here are some screenshots:
- Pop-up Notifications "Ubuntu theme" (multiple notifications):
- Pop-up Notifications "standard" theme, some random GTK theme:
- Pop-up Notifications "standard" theme, some other random GTK theme:
Revert the changes
Don't like it? Revert the changes using the commands below:
sudo apt-get remove notification-daemon
sudo killall notify-osd
sudo mv /usr/lib/notify-osd/notify-osd-original /usr/lib/notify-osd/notify-osd
Then press ALT + F2 and type:
/usr/lib/notify-osd/notify-osd
Try it out:
notify-send --icon=gtk-add Test "This is a test notification"