From mboxrd@z Thu Jan 1 00:00:00 1970 From: Frederic Couchet Subject: Re: org-mode + pomodoro Date: Tue, 31 Aug 2010 11:40:57 +0200 Message-ID: <87aao32k7q.fsf@april.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=47008 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OqNTo-0000Re-DD for emacs-orgmode@gnu.org; Tue, 31 Aug 2010 05:50:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OqNTn-0007Iw-3b for emacs-orgmode@gnu.org; Tue, 31 Aug 2010 05:50:12 -0400 Received: from lo.gmane.org ([80.91.229.12]:37597) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OqNTm-0007Ij-Ut for emacs-orgmode@gnu.org; Tue, 31 Aug 2010 05:50:11 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OqNTj-0005Ry-Bq for emacs-orgmode@gnu.org; Tue, 31 Aug 2010 11:50:07 +0200 Received: from lrouen-152-81-26-126.w80-13.abo.wanadoo.fr ([80.13.217.126]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 31 Aug 2010 11:50:07 +0200 Received: from fcouchet by lrouen-152-81-26-126.w80-13.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 31 Aug 2010 11:50:07 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org >>>>> "Sergey" == Sergey Konoplev writes: Sergey> Hi all, Are there ways to use Pomodoro technique Sergey> (http://www.pomodorotechnique.com/) with org-mode? If there Sergey> are what are the best practices? Sergey> Thank you in advice. Hello, I always start a clock when I work on a task. And for the Pomodoro technique I use also the org-timer module with some configuration. Activate the org-timer module : (add-to-list 'org-modules 'org-timer) Set a default value for the timer, for example : (setq org-timer-default-timer 25) Modify the org-clock-in so that a timer is started with the default value except if a timer is already started : (add-hook 'org-clock-in-hook '(lambda () (if (not org-timer-current-timer) (org-timer-set-timer '(16))))) Fred.