summaryrefslogtreecommitdiff
path: root/home/dots/.local/bin/todo
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-10-22 11:07:59 +0300
committerMarc Coquand <marc@mccd.space>2024-10-22 11:07:59 +0300
commite24f418e3499afd1e9e529b8656a35376e69f52a (patch)
tree90e01f42d46dec91e3a6cace4de6d089152fad29 /home/dots/.local/bin/todo
downloadguix-e24f418e3499afd1e9e529b8656a35376e69f52a.tar.gz
guix-e24f418e3499afd1e9e529b8656a35376e69f52a.tar.bz2
guix-e24f418e3499afd1e9e529b8656a35376e69f52a.zip
initial commit
Diffstat (limited to 'home/dots/.local/bin/todo')
-rwxr-xr-xhome/dots/.local/bin/todo14
1 files changed, 14 insertions, 0 deletions
diff --git a/home/dots/.local/bin/todo b/home/dots/.local/bin/todo
new file mode 100755
index 0000000..f0a02b8
--- /dev/null
+++ b/home/dots/.local/bin/todo
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+TODO_BASE='* TODO '
+JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
+echo '* TODO ' > /tmp/capture
+$EDITOR /tmp/capture +1
+if grep -q '^\* TODO\s*$' /tmp/capture
+then
+ echo "Empty capture"
+else
+ echo "Storing capture in $JRNL"
+ cat /tmp/capture > $JRNL
+fi
+