summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorself <self@sateoki.xyz>2022-05-21 22:21:05 +0100
committerself <self@sateoki.xyz>2022-05-21 22:21:05 +0100
commitbd1fa71b1b1b20fbf2ab86c25f3daaad93a99ecb (patch)
tree2ab620274d10e3dbff3d4b790af5e8139276ae18
parent32d0be48876353d92fa66ca4ca6c5c601c286f7e (diff)
holc
-rw-r--r--zsh/.zshrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 67e968f..315d2d3 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -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)"