Reminders (Pop-up & E-mail) with Unix?
mnjaga asks: "What is your solution for handling 'reminders' with Unix? I was using a little freeware called KirbyAlarm , when I was using Windows. After migrating to Linux, it took a while to get a handle on things. Currently, I am using a mixture of cron, remind, and mail . However, I am interested in a better solution than what I am presently using. How do you handle your pop-up and e-mail reminders?"
Sunbird would work perfectly for this. Only downside is, you have to be running the application to get the notifications.
[10:19] [nri@sammy:nri] $ cat bin/xat
/usr/bin/gmessage -wrap -center -font "12" $@
DATE=$1
shift
echo "echo xmsg.sh $@ | at $DATE"
echo xmsg.sh $@ | at $DATE
and
[10:19] [nri@sammy:nri] $ cat bin/xmsg.sh
DISPLAY=:0.0
then usage is
xat 10:21am today "Hello world"
if
On KDE KAlarm is a exactly what you are looking for...
For Gnome/GTK users, an equivalent program to kdialog is "zenity". For example:
zenity --info --info-text "Text Goes Here"
"Proudly Posting Without Reading The Article"
Important email (== personal email and, at work, new-bug email) generates one line messages there via procmail recipes. Opening my email also clears the window (write the terminal-clear sequence to the alert log).
Any decent calendar system should be capable of generating email for reminders, so when my workplace gets a (decent) calendar system the reminders will appear the same way.
I have a few other tiny tiny scripts that use this too; a "run job then alert" script that pops a line onto the log, and so forth.
This is very simple, extensible, doesn't litter my desktop with popups. Works for me!
Cameron Simpson, DoD#743 cs@cskk.id.au http://www.cskk.ezoshosting.com/cs/