[Orgmode] Re: org-mode + pomodoro

2010-09-03 Thread Łukasz Stelmach
Bastien bastien.gue...@wikimedia.fr writes:

 Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes:

 Is there a way to get a countdown timer visible like the one you start
 with `C-c C-x .'?

 `org-timer-set-timer' now displays a timer in the modeline.

Thanks a lot.

 Also thanks to Frédéric Couchet who asked me to have this feature for
 ges.

I think I've seen his post ;-)

-- 
Miłego dnia,
Łukasz Stelmach


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-mode + pomodoro

2010-09-02 Thread Łukasz Stelmach
Frederic Couchet fcouc...@april.org writes:

 Sergey == Sergey Konoplev gray...@gmail.com 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.

 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.
[...]

Is there a way to get a countdown timer visible like the one you start
with `C-c C-x .'?

-- 
Miłego dnia,
Łukasz Stelmach


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: org-mode + pomodoro

2010-09-02 Thread Bastien
Frederic Couchet fcouc...@april.org writes:

 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.

I created a section about using Org with Pomodoro on Worg:

  http://orgmode.org/worg/org-gtd-etc.php

-- 
 Bastien

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: org-mode + pomodoro

2010-09-02 Thread Bastien
Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes:

 Is there a way to get a countdown timer visible like the one you start
 with `C-c C-x .'?

`org-timer-set-timer' now displays a timer in the modeline.

Also thanks to Frédéric Couchet who asked me to have this feature for
ges.

-- 
 Bastien

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-mode + pomodoro

2010-08-31 Thread Frederic Couchet
 Sergey == Sergey Konoplev gray...@gmail.com 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.


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode