summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-05-20 09:42:25 -0500
committerMarc Coquand <marc@mccd.space>2024-05-20 09:42:25 -0500
commit8f8d362c3b7d65b69e2043f175388c438239d30b (patch)
tree198eb7904b98664ef7c5c09d856364ae80459b20
parent1e2fcbe20c72a87182dea115805738c3b20c4df5 (diff)
downloadrcm-8f8d362c3b7d65b69e2043f175388c438239d30b.tar.gz
rcm-8f8d362c3b7d65b69e2043f175388c438239d30b.tar.bz2
rcm-8f8d362c3b7d65b69e2043f175388c438239d30b.zip
kshrc: Move out capture, log,todo
-rw-r--r--kshrc40
-rwxr-xr-xlocal/bin/capture13
-rwxr-xr-xlocal/bin/log12
-rwxr-xr-xlocal/bin/todo15
-rw-r--r--profile1
5 files changed, 40 insertions, 41 deletions
diff --git a/kshrc b/kshrc
index 45516c5..695619b 100644
--- a/kshrc
+++ b/kshrc
@@ -12,46 +12,6 @@ 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##*/} '
-function log {
- 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
-}
-
-function capture {
- 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
-}
-
-function todo {
- 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
-}
-
alias jrnl='stitch -t :journal:'
eval "$(direnv export bash)"
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
+
+
diff --git a/profile b/profile
index aadb93e..fcdd098 100644
--- a/profile
+++ b/profile
@@ -21,7 +21,6 @@ export HISTSIZE=65535
export STITCH_DIRECTORY=/home/mccd/notes
export STITCH_GREP_CMD=ugrep
-
if [ "$(tty)" == "/dev/tty1" ]; then exec dbus-run-session hikari; fi
# opam configuration