Slashdot Mirror


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?"

7 of 60 comments (clear)

  1. Sunbird might work by themuffinking · · Score: 2, Informative

    Sunbird would work perfectly for this. Only downside is, you have to be running the application to get the notifications.

  2. small shell scrip by nri · · Score: 2, Informative

    [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"

    --
    if :w! doesn't work, try :!cvs commit -m""
  3. KAlarm by Danious · · Score: 3, Informative

    On KDE KAlarm is a exactly what you are looking for...

    1. Re:KAlarm by JabberWokky · · Score: 2, Informative
      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

      --
      "$30 for the One True Ring. $10 each additional ring!" -- JRR "Bob" Tolkien
  4. Re:Shark jumping by Gleng · · Score: 2, Informative

    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"
  5. Quick and dirty in OS X by Anonymous Coward · · Score: 2, Informative
    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.
  6. notifications by cs · · Score: 2, Informative
    My desktop 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!

    --
    Cameron Simpson, DoD#743 cs@cskk.id.au http://www.cskk.ezoshosting.com/cs/