Topic: a lightweight reminder program?

Currently I have been using FF add-on ReminderFox.  Unfortunately there is bug in the latest release disallowing me to delete old reminders.
Instead of fixing, I decided to look at other reminder program (see what is out there).  ReminderFox is an overkill - all I need is a program to list
all my dates - some with weekly/monthly/yearly reminder.  I don't need all the fancy options.  Same for Kalarm (which I used long ago).  And I
don't want to add ton of KDE libraries to get kalarm working.

#! uses openbox which probably has minimal libraries.  I'm looking for a LIGHTWEIGHT reminder program that would work well with #!.  Don't
want to load bunch of libraries.  Do you people have any suggestion?

Sheng-Chieh

Re: a lightweight reminder program?

I use OSMO

http://linuxappfinder.com/package/osmo
http://www.linux.com/archive/feed/123837

A nice light calendar-reminder application.  Tasks, notes and reminders and such.

It's in the #! repros and is light-weight.

Try it out ... couldn't hurt .. you can always delete it if you don't like it.

Last edited by vrkalak (2010-04-24 03:21:53)

Registered Linux User: #497030
LinuxMint Forum | DeviantART page | Lost-in-the-Box Forum  |  Ask.Debian
#!Crunchbang 'Statler' (Openbox) -- LinuxMint-Debian-Fluxbox Edition

Re: a lightweight reminder program?

Orage is already installed in Statler and looks like what you're requesting.

#Linux user 482038, eeepc 1000H and 901

Re: a lightweight reminder program?

Try Memo from the ROX desktop project.

www.roscidus.com (it's in software under Other).

Re: a lightweight reminder program?

A really lightwight and powerfull tool is remind, graphical frontend is optional

take a look at: http://www.roaringpenguin.com/products/remind

Re: a lightweight reminder program?

I'm getting excellent results with a combination of Remind with TkRemind as the GUI. I have also managed to sync reminders across multiple computers, something that was essential for me. I did not want to use something with multiple libraries based on gnome or kde, so this is the perfect solution in terms of lightweight.

Anyway here's how I have set it up with reminders synced using dropbox:

1. Install both programs (meh) you might need to additionally install libnotify-bin in case you aren't seeing any notifications.

2. The main reminder file will be created at ~/.reminders You will create an additional file for sync at ~/Dropbox/.tkreminders ( the file name and directory path is all up to you)

3. Open ~/.reminders and add this line anywhere

INCLUDE [getenv("HOME")]/Dropbox/.tkreminders

This is assuming your sync file is ~/Dropbox/.tkreminders otherwise change accordingly

4. Open the autostart file which is probably at ~/.config/openbox/autostart and add the following lines

(sleep 30s && remind -z0) &
(sleep 40s && tkremind ~/.reminders ~/Dropbox/.tkreminders) &

I have used the sleep option but it is not necessary, so long as you make sure that the tkremind option follows the remind command.

remind z0 starts remind in "server mode" so that it works with tkremind and does not open a terminal window by itself

tkremind read_file write_file tells tkremind to launch with separate read and write files so that the reminders can be written to the synced file, while remind continues to rely on the main reminder file.

I have added the option in tkremind so that this command is launched at the time of reminding:

notify-send Reminder

This shows a Reminder window on the top right (similar to the "Statler says" popup, though the main message still apears in a window produced by tkremind. Maybe someone can figure out how to combine the two, so that the notify-send window is used to display reminder messages, as that is much better looking.