diff options
Diffstat (limited to '')
-rwxr-xr-x | local/bin/log | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/local/bin/log b/local/bin/log new file mode 100755 index 0000000..f46893c --- /dev/null +++ b/local/bin/log @@ -0,0 +1,12 @@ +#!/bin/sh + +JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org" +echo '* :journal:' > /tmp/capture +kak /tmp/capture +1:3 -e "execute-keys i" +if grep -q '^\*\s*:journal:' /tmp/capture +then + echo "Empty capture; ignoring" +else + echo "Storing capture in $JRNL" + cat /tmp/capture > $JRNL +fi |