diff options
author | self <self@sateoki.xyz> | 2022-05-01 10:26:48 +0100 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-05-01 10:26:48 +0100 |
commit | 9007de310a5ba9b023f26abe1fee1c50560acca6 (patch) | |
tree | 34542a748076fb4a5d47ca9dcbf59715ba23a25d /zsh | |
parent | 442538620ef5790dbaa0715fc9dafca72896fc80 (diff) |
Some improvements to lle, mer, yer functions
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -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 |