From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yasuhito Takamiya Subject: Re: [ANN] orgbox: Mailbox-like task scheduling in org-agenda. Date: Mon, 24 Mar 2014 16:33:12 +0900 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43688) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WRzO2-0004bT-OU for Emacs-orgmode@gnu.org; Mon, 24 Mar 2014 03:33:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WRzO1-0005o4-IL for Emacs-orgmode@gnu.org; Mon, 24 Mar 2014 03:33:34 -0400 Received: from mail-qc0-x233.google.com ([2607:f8b0:400d:c01::233]:60001) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WRzO1-0005nu-E7 for Emacs-orgmode@gnu.org; Mon, 24 Mar 2014 03:33:33 -0400 Received: by mail-qc0-f179.google.com with SMTP id m20so5425708qcx.24 for ; Mon, 24 Mar 2014 00:33:32 -0700 (PDT) In-Reply-To: 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 Hi Alan, > It would be great to be able to configure some of the hard-coded dates > and time, such as: > - later today: number of hours (currently 3) > - start of evening: currently 18:00 > - start of day: currently 08:00 > - start of weekend: currently Saturday (you could use > `org-agenda-weekend-days' as you are doing for the `orgbox-weekend-p' > predicate) > - start of week: currently Monday, at 08:00 > - someday: currently in 3 months Added the following defcustoms. - orgbox-start-time-of-day - orgbox-start-day-of-week - orgbox-start-time-of-weekends - orgbox-start-day-of-weekends - orgbox-start-time-of-evening - orgbox-later - orgbox-someday https://github.com/yasuhito/orgbox Thanks for your feedback! Yasuhito On Fri, Mar 21, 2014 at 4:28 PM, Alan Schmitt wrote: > Hello Yasuhito, > > Yasuhito Takamiya writes: > >> Hello all, >> >> For your information, to anyone interested in GTD and org-mode, >> I am developing a tiny tool for org-mode to schedule your agenda tasks >> easily like Mailbox iPhone app (http://www.mailboxapp.com/). >> >> https://github.com/yasuhito/orgbox >> (This is already available on MELPA.) >> >> Usage: >> - Open org-agenda view. >> - Move your cursor to a task you want to schedule and type C-c C-s >> (or M-x orgbox). >> - Select one of the scheduling method from the menu shown on the >> minibuffer. >> >> - [l] Later Today >> - [e] This Evening >> - [t] Tomorrow >> - [w] This Weekend >> - [n] Next Week >> - [i] In a Month >> - [s] Someday >> - [p] Pick Date >> >> If anyone is interested in being involved in taking this forward, >> that'd be great. > > I had a quick look at your code and this looks like a nice idea. I have > a couple comments. > > It would be great to be able to configure some of the hard-coded dates > and time, such as: > - later today: number of hours (currently 3) > - start of evening: currently 18:00 > - start of day: currently 08:00 > - start of weekend: currently Saturday (you could use > `org-agenda-weekend-days' as you are doing for the `orgbox-weekend-p' > predicate) > - start of week: currently Monday, at 08:00 > - someday: currently in 3 months > > I don't know how difficult it would be to make these user configurable. > In any case, I find this is a very useful addition to scheduling in org > mode. > > Thanks, > > Alan