From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: notifications for todo items Date: Thu, 23 Feb 2012 04:06:56 -0500 Message-ID: <7135.1329988016@alphaville> References: <87hayixwu8.fsf@micropit.couberia.bzh> <7623.1329960485@alphaville> <87vcmyvtcu.fsf@micropit.couberia.bzh> Reply-To: nicholas.dokos@hp.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:51580) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0Udj-0001WE-Vm for emacs-orgmode@gnu.org; Thu, 23 Feb 2012 04:07:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S0Udf-0006kA-Kk for emacs-orgmode@gnu.org; Thu, 23 Feb 2012 04:07:03 -0500 Received: from g1t0027.austin.hp.com ([15.216.28.34]:24035) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0Udf-0006k3-E4 for emacs-orgmode@gnu.org; Thu, 23 Feb 2012 04:06:59 -0500 In-Reply-To: Message from =?us-ascii?Q?=3D=3Futf-8=3FQ=3FPeter=5FM=3DC3=3D?= =?us-ascii?Q?BCnster=3F=3D?= of "Thu\, 23 Feb 2012 09\:36\:49 +0100." <87vcmyvtcu.fsf@micropit.couberia.bzh> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: =?us-ascii?Q?=3D=3Futf-8=3FQ=3FPeter=5FM=3DC3=3DBCnster=3F=3D?= Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Peter M=C3=BCnster wrote: > On Thu, Feb 23 2012, Nick Dokos wrote: >=20 > > what does this do that appt.el (and its org interface) does not? >=20 > Sorry, I've totally forgotten to write about my motivation, to create > such an org-notify module. >=20 > Here a summary: > - different warning periods for different todo-types > - fine grained warning periods (smallest unit is second) > - continue notifications, when deadline is overdue > - easy modification of timestamps (just one click, to say > "let's do it tomorrow") > - switch from "todo" to "done" by clicking on the notification window > - configurable notification types (email, notifications-notify, beep, > etc.) > - configurable notification period > - configurable notification duration > - crescendo notifications (be more aggressive, when time gets closer to > deadline) >=20 > There was a little thread about this subject: > http://thread.gmane.org/gmane.emacs.orgmode/48832 >=20 >=20 > Example usage: > (org-notify-add 'appt > '(:time "-1s" :period "20s" :duration 10 > :actions (org-notify-action-message > org-notify-action-ding)) > '(:time "15m" :period "2m" :duration 100 > :actions org-notify-action-notify) > '(:time "2h" :period "5m" > :actions org-notify-action-message) > '(:time "1d" :actions org-notify-action-email)) >=20 > This means for todo-items with `notify' property set to `appt': 1 day bef= ore > deadline, send a reminder-email, 2 hours before deadline, start to send > messages every 5 minutes, then, 15 minutes before deadline, start to pop = up > notification windows every 2 minutes. The timeout of the window is set to > 100 seconds. Finally, when deadline is overdue, send messages and make > noise. >=20 Thanks! That's very helpful. I'll take a look in my copious (cough!) spare time. Nick