This is a silent (but effective) and quite cool way to get notified of your new Thunderbird email using an "on-screen" display.
(see attached screenshot for an example)
First, some prerequistites:
- You need to install the xosd-bin package.
- You need to download and install the Mailbox Alert Thunderbird extension. This can be found here.
Next create a file called ~/bin/newmail with the following:
Note: depending on the resolution of your monitor and your preference for the message position, you may want/need to tweek the -i and -o parameters.Code:#!/bin/bash echo "You have new mail" | osd_cat -d 10 -i460 -o500 -f lucidasans-bold-24 -c green
After you save the file:
Now, go into Thunderbird, right-click on your inbox and select "Mailbox Alert".Code:chmod a+x ~/bin/newmail
Check "Execute a Command" and in the textbox to the right enter:
Click ok and you are done!Code:~/bin/newmail
As configured above, the message will appear on the screen for 10 seconds. You can adjust this time by tweeking the -d option in your ~/bin/newmail file.
Enjoy!
Bookmarks