From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Peter_M=C3=BCnster?= Subject: Re: Notifications-notify for org-mode scheduled items? Date: Mon, 24 Aug 2015 15:07:25 +0200 Message-ID: <87d1yc4yya.fsf@roche-blanche.net> References: <236000327.8705426.1424456958103.JavaMail.zimbra@redhat.com> <1315055321.8705560.1424456975399.JavaMail.zimbra@redhat.com> <87wq372hzg.fsf@nicolasgoaziou.fr> <1214622328.10830918.1424876292203.JavaMail.zimbra@redhat.com> <477923083.13751437.1425318881466.JavaMail.zimbra@redhat.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44258) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTrTY-0004Ul-Px for emacs-orgmode@gnu.org; Mon, 24 Aug 2015 09:07:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTrTU-0003hR-Om for emacs-orgmode@gnu.org; Mon, 24 Aug 2015 09:07:48 -0400 Received: from plane.gmane.org ([80.91.229.3]:47258) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTrTU-0003hC-Hs for emacs-orgmode@gnu.org; Mon, 24 Aug 2015 09:07:44 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZTrTS-0001Tm-DS for emacs-orgmode@gnu.org; Mon, 24 Aug 2015 15:07:42 +0200 Received: from arennes-651-1-8-41.w86-215.abo.wanadoo.fr ([86.215.151.41]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Aug 2015 15:07:42 +0200 Received: from pmlists by arennes-651-1-8-41.w86-215.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Aug 2015 15:07:42 +0200 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: emacs-orgmode@gnu.org On Mon, Mar 02 2015, Leo Ufimtsev wrote: > I would like to receive desktop notifications (1* e.g below) for scheduled items. > E.g if I schedule like this: > > * Make Coffee > SCHEDULED: <2015-03-02 Mon 01:30> > > Then I would like a desktop notification to pup up at 1:30 telling me to make coffee. > > I saw the org-notify package, but besides this post: > http://permalink.gmane.org/gmane.emacs.orgmode/59339 > I didn't see any documentation on it, making it somewhat tricky to configure. Hi, Please find here a minimal working example: Configuration: --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path ".../org-mode/contrib/lisp") (require 'org-notify) (setq org-agenda-files '("/tmp/test-agenda.org")) (org-notify-start) --8<---------------cut here---------------end--------------->8--- File /tmp/test-agenda.org: --8<---------------cut here---------------start------------->8--- * TODO Make Coffee DEADLINE: <2015-08-24 Mon 17:30> --8<---------------cut here---------------end--------------->8--- -- Peter