diff options
author | Marc Coquand <marc@mccd.space> | 2024-10-22 11:07:59 +0300 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-10-22 11:07:59 +0300 |
commit | e24f418e3499afd1e9e529b8656a35376e69f52a (patch) | |
tree | 90e01f42d46dec91e3a6cace4de6d089152fad29 /home/dots/.local/bin/capture | |
download | guix-e24f418e3499afd1e9e529b8656a35376e69f52a.tar.gz guix-e24f418e3499afd1e9e529b8656a35376e69f52a.tar.bz2 guix-e24f418e3499afd1e9e529b8656a35376e69f52a.zip |
initial commit
Diffstat (limited to 'home/dots/.local/bin/capture')
-rwxr-xr-x | home/dots/.local/bin/capture | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/home/dots/.local/bin/capture b/home/dots/.local/bin/capture new file mode 100755 index 0000000..c4cd844 --- /dev/null +++ b/home/dots/.local/bin/capture @@ -0,0 +1,16 @@ +#!/bin/sh + +DATE=$(date +'%y-%m-%d.%H:%M.%S') +CAPTURE_FILE="/tmp/capture-$DATE" +echo $DATE +JRNL="$STITCH_DIRECTORY/$DATE.org" +echo '* ' > $CAPTURE_FILE +$EDITOR $CAPTURE_FILE +1 +if grep -q '^\*\s*$' $CAPTURE_FILE +then + echo "Empty capture; ignoring" +else + echo "Storing capture in $JRNL" + cat $CAPTURE_FILE > $JRNL +fi + |