Open dotinspace opened 5 years ago
This is mine, which I've been using for a long time;
(telephone-line-defsegment th/telephone-clock-segment ()
(when (telephone-line-selected-window-active)
;; The org-clocking-p function isn't necessarily loaded until we start
;; actually clocking something.
(if (and (functionp 'org-clocking-p) (org-clocking-p))
(org-clock-get-clock-string)
"")))
It only shows the segment in your currently active buffer's modeline, and it contains the clock and which task you're working on;
I cannot seem to manage defining a segment to display org-clock. When I add a custom segment, absolutely nothing happens.
Currently, I have the following defined:
Any pointers would be highly appreciated.