From 9007de310a5ba9b023f26abe1fee1c50560acca6 Mon Sep 17 00:00:00 2001 From: self Date: Sun, 1 May 2022 10:26:48 +0100 Subject: Some improvements to lle, mer, yer functions --- zsh/.zshrc | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'zsh') 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 -- cgit v1.2.1