Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Software Operating Systems Unix

Reminders (Pop-up & E-mail) with Unix? 60

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?"
This discussion has been archived. No new comments can be posted.

Reminders (Pop-up & E-mail) with Unix?

Comments Filter:
  • Sunbird might work (Score:2, Informative)

    by themuffinking ( 826948 ) <themuffinking01@nOSpam.gmail.com> on Wednesday July 20, 2005 @08:16PM (#13119245) Homepage
    Sunbird [mozilla.org] would work perfectly for this. Only downside is, you have to be running the application to get the notifications.
  • small shell scrip (Score:2, Informative)

    by nri ( 149893 ) on Wednesday July 20, 2005 @08:20PM (#13119281)
    [10:19] [nri@sammy:nri] $ cat bin/xat
    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 /usr/bin/gmessage -wrap -center -font "12" $@

    then usage is

    xat 10:21am today "Hello world"

  • KAlarm (Score:4, Informative)

    by Danious ( 202113 ) on Wednesday July 20, 2005 @08:24PM (#13119314) Homepage
    On KDE KAlarm is a exactly what you are looking for...
  • Re:KAlarm (Score:3, Informative)

    by JabberWokky ( 19442 ) <slashdot.com@timewarp.org> on Wednesday July 20, 2005 @08:43PM (#13119479) Homepage Journal
    Kontact (i.e., KOrganizer, which can be run without the whole Kontact framework) is the "complete and easy to use" version.

    KAlarm is pretty much what I like: small, easy to use and flexible. If you need more depth, KOrganizer is there, and if you need an entire contact solution, KOrganizer fits right into Kontact.

    Of course, each of these applications can be manipulated by scripts in a variety of languages from python to bash through DCOP, or you can use classic commandline calls.

    Small solutions that step up and aggregate to complete solutions - the Unix way.

    --
    Evan

  • Re:Shark jumping (Score:3, Informative)

    by Gleng ( 537516 ) on Wednesday July 20, 2005 @10:05PM (#13120067)
    For Gnome/GTK users, an equivalent program to kdialog is "zenity". For example:

    zenity --info --info-text "Text Goes Here"
  • by Anonymous Coward on Wednesday July 20, 2005 @10:45PM (#13120335)
    I know the poster isn't using OS X, but for anyone who is, try this in Terminal:
    osascript -e 'tell application "Finder" to display dialog "[your text here]"'
    If the Finder isn't the active application, its dock icon will start bouncing to get your attention and you'll see the dialog box once you click on it. You can do something more robust by using osascript and specifying a file containing a longer AppleScript, e.g. something that tells the Finder to activate and then display the dialog.
  • notifications (Score:2, Informative)

    by cs ( 15509 ) <cs@cskk.id.au> on Thursday July 21, 2005 @09:38PM (#13131245) Homepage
    My desktop [ezoshosting.com] just has a small borderless terminal window at the top running "tail -f" on ~/var/log/alert. I write notifications there with ANSI yellow escape sequences so they're bright.

    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!

It's a naive, domestic operating system without any breeding, but I think you'll be amused by its presumption.

Working...