summaryrefslogtreecommitdiff
path: root/kshrc
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-05-17 17:21:21 -0500
committerMarc Coquand <marc@mccd.space>2024-05-17 17:21:21 -0500
commit6ab72d656c2030dbe685f0a3ab9549edb3634e88 (patch)
treed051c4b7121f7155553bd3f0232d10de971e88f4 /kshrc
parent5933406a6a420baca6e00ab73b258702184b98ca (diff)
downloadrcm-6ab72d656c2030dbe685f0a3ab9549edb3634e88.tar.gz
rcm-6ab72d656c2030dbe685f0a3ab9549edb3634e88.tar.bz2
rcm-6ab72d656c2030dbe685f0a3ab9549edb3634e88.zip
Updates
Diffstat (limited to 'kshrc')
-rw-r--r--kshrc36
1 files changed, 28 insertions, 8 deletions
diff --git a/kshrc b/kshrc
index 54c49c4..45516c5 100644
--- a/kshrc
+++ b/kshrc
@@ -12,24 +12,44 @@ alias de='eval "$(direnv export bash)"'
alias f-commit="fossil commit && fossil git export"
PS1='$(git branch 2> /dev/null | grep "^\*" | colrm 1 2 | sed -e "s/$/./")${PWD##*/} '
-export STITCH_DIRECTORY=/home/mccd/notes
-export STITCH_GREP_CMD=ugrep
function log {
JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
- echo '* :journal:' >> $JRNL
- kak "$JRNL" +1:3 -e "execute-keys i"
+ 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
}
function capture {
JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
- echo '* ' >> $JRNL
- kak "$JRNL" +1:3 -e "execute-keys i"
+ 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
}
function todo {
+ TODO_BASE='* TODO '
JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
- echo '* TODO ' >> $JRNL
- kak "$JRNL" +1:8 -e "execute-keys i"
+ 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
}
alias jrnl='stitch -t :journal:'