diff options
author | self <self@sateoki.xyz> | 2022-05-21 22:21:05 +0100 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-05-21 22:21:05 +0100 |
commit | bd1fa71b1b1b20fbf2ab86c25f3daaad93a99ecb (patch) | |
tree | 2ab620274d10e3dbff3d4b790af5e8139276ae18 | |
parent | 32d0be48876353d92fa66ca4ca6c5c601c286f7e (diff) |
holc
-rw-r--r-- | zsh/.zshrc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -180,6 +180,12 @@ lle() { # Life Log Entry nvim "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)/L$(date --iso-8601 -d $DT).txt" } +holc () { # Holiday Entry + 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)/H$(date --iso-8601 -d $DT).txt" +} + mer() { # Month End Recap - TODO: get this to work just with e.g. mer 2022-01 if [ -z $1 ] ; then DT="yesterday" else DT="$1" fi mkdir -p "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)" |