0

C-C C-x ; can start count down timer. But I want to start the timer whenever I open any org file. I want to set it default for 10 minute. Kindly help

Vaibhav
  • 573
  • 3
  • 15

1 Answers1

2

Have you tried adding the function to org-mode-hook?

If you haven't tried it yet, what I would recommend is to create a function my-org-mode-hook-function which evaluates (org-timer-set-timer 10). Then add to your .emacs file the expression (add-hook 'org-mode-hook 'my-org-mode-hook-function).

user1404316
  • 769
  • 5
  • 12