summaryrefslogtreecommitdiff
path: root/local/bin/todo
diff options
context:
space:
mode:
Diffstat (limited to 'local/bin/todo')
-rwxr-xr-xlocal/bin/todo15
1 files changed, 15 insertions, 0 deletions
diff --git a/local/bin/todo b/local/bin/todo
new file mode 100755
index 0000000..58299cd
--- /dev/null
+++ b/local/bin/todo
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+TODO_BASE='* TODO '
+JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
+echo '* TODO ' > /tmp/capture
+kak /tmp/capture +1:8 -e "execute-keys i"
+if grep -q '^\* TODO\s*$' /tmp/capture
+then
+ echo "Empty capture"
+else
+ echo "Storing capture in $JRNL"
+ cat /tmp/capture > $JRNL
+fi
+
+