summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorself <self@sateoki.xyz>2022-05-01 10:26:48 +0100
committerself <self@sateoki.xyz>2022-05-01 10:26:48 +0100
commit9007de310a5ba9b023f26abe1fee1c50560acca6 (patch)
tree34542a748076fb4a5d47ca9dcbf59715ba23a25d /zsh
parent442538620ef5790dbaa0715fc9dafca72896fc80 (diff)
Some improvements to lle, mer, yer functions
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc17
1 files changed, 10 insertions, 7 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index ad96476..fa4b81e 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -148,18 +148,21 @@ alias r="prime-run newsboat"
# lle... TODO: maybe find a way to make these take up less room in the zshrc?
lle() { # Life Log Entry
- mkdir -p ~/docs/daily-log/$(date +%Y-%m -d $1)
- nvim ~/docs/daily-log/$(date +%Y-%m -d $1)/L$(date --iso-8601 -d $1).txt
+ if [ -z $1 ] ; then DT="today" else DT="$1" fi
+ mkdir -p "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)"
+ nvim "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)/L$(date --iso-8601 -d $DT).txt"
}
mer() { # Month End Recap - TODO: get this to work just with e.g. mer 2022-01
- mkdir -p ~/docs/daily-log/$(date +%Y-%m -d $1)
- nvim "~/docs/daily-log/$(date +%Y-%m -d $1)/L$(date +%Y-%m -d $1) - Month End Recap"
+ if [ -z $1 ] ; then DT="yesterday" else DT="$1" fi
+ mkdir -p "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)"
+ nvim "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)/L$(date +%Y-%m -d $DT) - Month End Recap.txt"
}
-yer() { # Year End Recap - TODO: see mer TODO
- mkdir -p ~/docs/daily-log/$(date %Y -d $1)-12
- nvim "~/docs/daily-log/$(date +%Y -d $1)-12/$(date +%Y -d $1) - Year End Recap"
+yer() { # Year End Recap - TODO: see mer todos
+ if [ -z $1 ] ; then DT="yesterday" else DT="$1" fi
+ mkdir -p "$HOME/docs/daily-log/$(date %Y -d $DT)-12"
+ nvim "$HOME/docs/daily-log/$(date +%Y -d $DT)-12/$(date +%Y -d $DT) - Year End Recap.txt"
}
mn() { # make note