#orgmode emacs를 꺼도 org-clock은 굴러간다
(org-clock-persistence-insinuate)
(setq org-clock-persist t)
(setq org-clock-in-resume t)
(setq org-clock-persist-query-resume nil)
org-clock을 켜놓고 emacs를 끄면 귀찮아진다. :LOGBOOK:
drawer에 시작 시각이 입력돼 있지만 org-clock 런타임 정보에는 없어서 org-resolve-clocks 함수를 호출해야 한다.
org-clock persistence를 설정하면 org-clock 시작 정보를 파일에 저장해 놓고 emacs를 시작할 때, 읽어서 런타임에 반영하기 때문에 emacs를 껐다 켜도 문제없다. 자동으로 이어서 시작.
참고 - Clocking time with Org-mode - writequit.org
C-x C-s C-x C-c