From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sacha Chua Subject: Re: total time spent on a task Date: Mon, 14 Apr 2014 11:29:09 -0400 Message-ID: <86eh109bga.fsf@sachachua.com> References: <8761mcvx3t.fsf@grothesque.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60146) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WZip4-0008EM-La for emacs-orgmode@gnu.org; Mon, 14 Apr 2014 11:29:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WZioy-00023c-QA for emacs-orgmode@gnu.org; Mon, 14 Apr 2014 11:29:26 -0400 Received: from plane.gmane.org ([80.91.229.3]:47132) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WZioy-00023W-KR for emacs-orgmode@gnu.org; Mon, 14 Apr 2014 11:29:20 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WZior-0006Ng-L1 for emacs-orgmode@gnu.org; Mon, 14 Apr 2014 17:29:13 +0200 Received: from 69-196-133-182.dsl.teksavvy.com ([69.196.133.182]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Apr 2014 17:29:13 +0200 Received: from sacha by 69-196-133-182.dsl.teksavvy.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Apr 2014 17:29:13 +0200 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 Christoph Groth writes: Hello, Christoph! > I’m looking for a quick way to check the total time spent on a task. I > bet I’m missing something obvious. (I have set > org-clock-mode-line-total to today, so I do not see the total time of a > clocked-in task in the mode line.) C-c C-x C-d (org-clock-display) will show the task times as overlays on the headings. If you want something exportable, you can use C-c C-x C-r (org-clock-report) - see the info page for "The clock table" for lots of options. If you want the number of minutes in Emacs Lisp, use (org-clock-sum-current-item) for the current item or (org-clock-sum) to add totals to all, then go to the heading and get the :org-clock-minutes property. Hope that helps! Sacha