diff options
author | Matthew Lemon <y@yulqen.org> | 2023-09-25 17:43:48 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-09-25 17:43:48 +0100 |
commit | ea1242fc7047852beb68f07340ed21ee59c008c8 (patch) | |
tree | 53801a23614705341cdfbe45bb24711eae0b31c2 | |
parent | 7628f792ae3024fc044a1a1238f0a1b51c241b9e (diff) |
Fixes todj
Diffstat (limited to '')
-rw-r--r-- | bashrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -67,6 +67,7 @@ alias rem1='ssh bobbins rem -c+a1 -w240 -m' alias rem2='ssh bobbins rem -c+a2 -w240 -m' alias weather='curl wttr.in' alias hn='curl hkkr.in' +alias _hl_bal_lastmonth='hledger bal --period "this month" --depth 3 Expenses' alias qnarchive='mkdir /tmp/quicknotes && cp ~/code/html/yulqen.org/content/techjournal/quicknote_capture_* /tmp/quicknotes && cp ~/Documents/Notes/quicknote.md /tmp/quicknotes && tar czf quicknotes.tgz -C /tmp/quicknotes .' # Environment variables @@ -235,7 +236,7 @@ function newpost() { ################################################################### todj () { CMD=${1:-"cat"} - $CMD $(find /home/lemon/Documents/Notes/journal -name "*$(date '+%Y-%m-%d')*") + $CMD $(find /home/lemon/Documents/Notes/journal/home -name "*$(date '+%Y-%m-%d')*") } ######################################################################### |