about summary refs log tree commit diff
path: root/clocked-in-elt.el
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2020-03-26T19·03-0400
committerGriffin Smith <root@gws.fyi>2020-03-26T19·03-0400
commit35c76e7098111ed0d84aef1bd09f7025ce728b87 (patch)
treecea6f3893ffb3b983fdc42b4c38aa5c3c1a5fe36 /clocked-in-elt.el
parent23b179ad1d3d2e07c114741dffc50a8343f0a7a6 (diff)
Many updates, too many to count
commit messages are for code, not config

I guess
Diffstat (limited to 'clocked-in-elt.el')
-rw-r--r--clocked-in-elt.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/clocked-in-elt.el b/clocked-in-elt.el
new file mode 100644
index 0000000000..00fda047e4
--- /dev/null
+++ b/clocked-in-elt.el
@@ -0,0 +1,18 @@
+;;; ~/.doom.d/clocked-in-elt.el -*- lexical-binding: t; -*-
+;;;
+(load (expand-file-name "init" (or (getenv "EMACSDIR")
+               (expand-file-name
+                "../.emacs.d"
+                (file-name-directory (file-truename load-file-name))))))
+
+(require 'org-clock)
+(require 'org-element)
+
+(let ((item (or org-clock-marker
+                (car org-clock-history))))
+  (when item
+    (with-current-buffer (marker-buffer item)
+      (goto-char (marker-position item))
+      (let ((element (org-element-at-point)))
+        (when (eq 'headline (car element))
+          (message "%s" (plist-get (cadr element) :raw-value)))))))