Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

If I walk away from my PC, then there is a good chance I might miss certain notifications. I've seen in KDE that notifications get stored and stacked until you click them (or whatever).

Unless I'm missing something, Ubuntu doesn't seem to have a history of clickable notifications.

Is there a way to do this?

share|improve this question
Great question. – Gigili Feb 19 '12 at 12:01

1 Answer

up vote 8 down vote accepted

Take Recent Notifications.

screenshot recent notifications

In a terminal run:

sudo add-apt-repository ppa:jconti/recent-notifications
sudo apt-get update
sudo apt-get install indicator-notifications

Alternatively you could download the package directly on the launchpad-site. For Ubuntu 11.10 Oneiric on an i386-machine choose indicator-notifications_0.1.4-2~ppa~oneiric_i386.deb. (Don't install recent-notifications)

After installing run Alt+F2 unity --replace.

You will find a little mailbox in the panel:

recent notifications in panel

It is possible to align the icon to your desktop theme, i. e. when you use Faenza:

mkdir ~/.icons/Faenza/status/scalable
cp /usr/share/icons/Faenza/status/scalable/user-available-symbolic.svg ~/.icons/Faenza/status/scalable/indicator-notification-unread.svg
cp /usr/share/icons/Faenza/status/scalable/user-away-symbolic.svg ~/.icons/Faenza/status/scalable/indicator-notification-read.svg

new Faenza icons

To stop it you need to unistall it:

sudo apt-get purge indicator-notifications

Then again run Alt+F2 unity --replace.

To remove the ppa run:

sudo add-apt-repository -r ppa:jconti/recent-notifications
share|improve this answer
1  
Can this be done without adding another PPA? I think a lot of us avoid doing this wherever possible. – Tom Brossman Feb 19 '12 at 13:18
And how would this be uninstalled? – Gonzoza Feb 19 '12 at 13:41
Nice work, thanks for the edits. – Tom Brossman Feb 19 '12 at 13:52
1  
I can't get it to work. "sudo aptitude update" throws an error, as does the third line of code. – Gonzoza Feb 19 '12 at 13:55
Yes, that worked, thanks. – Gonzoza Feb 23 '12 at 8:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.