From e24f418e3499afd1e9e529b8656a35376e69f52a Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Tue, 22 Oct 2024 11:07:59 +0300 Subject: initial commit --- home/dots/.local/bin/todo | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 home/dots/.local/bin/todo (limited to 'home/dots/.local/bin/todo') 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 + -- cgit v1.2.3