[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Orgmode] due today notification
From: |
Bastien |
Subject: |
Re: [Orgmode] due today notification |
Date: |
Sat, 24 Apr 2010 09:40:08 +0200 |
User-agent: |
Gnus/5.110011 (No Gnus v0.11) Emacs/23.1.92 (gnu/linux) |
Hi,
Buck Brody <address@hidden> writes:
> Is there a way to know if an item is due today by only looking at the headline
> or at an agenda?
The is the agenda custom command I use for this:
,----
| ("d" "Due today" agenda ""
| ((org-agenda-ndays 1)
| (org-deadline-warning-days 0)
| (org-agenda-skip-scheduled-if-deadline-is-shown t)
| (org-agenda-skip-function
| (lambda ()
| (let* ((dl (org-entry-get nil "DEADLINE")))
| (if (or (not dl)
| (equal dl "")
| (org-time> dl (org-time-today)))
| (progn (outline-next-heading) (point))))))))
`----
It shows all deadlines due today.
HTH
--
Bastien
- [Orgmode] due today notification, Buck Brody, 2010/04/23
- Re: [Orgmode] due today notification,
Bastien <=
- [Orgmode] Re: due today notification, Matt Lundin, 2010/04/24
- [Orgmode] Re: due today notification, Buck Brody, 2010/04/26
- [Orgmode] Re: due today notification, Matthew Lundin, 2010/04/27
- [Orgmode] Re: due today notification, Buck Brody, 2010/04/28
- [Orgmode] Re: due today notification, Matthew Lundin, 2010/04/28
- [Orgmode] Re: due today notification, Buck Brody, 2010/04/28
- [Orgmode] Re: due today notification, Matthew Lundin, 2010/04/28
- Re: [Orgmode] Re: due today notification, Nick Dokos, 2010/04/28
- Re: [Orgmode] Re: due today notification, Buck Brody, 2010/04/28
- Re: [Orgmode] Re: due today notification, Nick Dokos, 2010/04/28