From 8f8d362c3b7d65b69e2043f175388c438239d30b Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Mon, 20 May 2024 09:42:25 -0500 Subject: kshrc: Move out capture, log,todo --- local/bin/capture | 13 +++++++++++++ local/bin/log | 12 ++++++++++++ local/bin/todo | 15 +++++++++++++++ 3 files changed, 40 insertions(+) create mode 100755 local/bin/capture create mode 100755 local/bin/log create mode 100755 local/bin/todo (limited to 'local/bin') diff --git a/local/bin/capture b/local/bin/capture new file mode 100755 index 0000000..cac405a --- /dev/null +++ b/local/bin/capture @@ -0,0 +1,13 @@ +#!/bin/sh + +JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org" +echo '* ' > /tmp/capture +kak /tmp/capture +1:3 -e "execute-keys i" +if grep -q '^\*\s*$' /tmp/capture +then + echo "Empty capture; ignoring" +else + echo "Storing capture in $JRNL" + cat /tmp/capture > $JRNL +fi + 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 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 + + -- cgit v1.2.3