Initial commit after confirming working Lua config

This commit is contained in:
2026-06-27 17:14:39 -04:00
parent 9b1e714b9c
commit 3cadcad501
54 changed files with 825 additions and 50 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/usr/bin/env zsh
#set -x
case "$(basename ${0})" in
today)
date +%F | tr -d '\n'
;;
yesterday)
date -d '-1 day' +%F | tr -d '\n'
;;
tomorrow)
date -d '+1 day' +%F | tr -d '\n'
;;
nextweek)
date -d '+1 week' +%F | tr -d '\n'
;;
lastweek)
date -d '-1 week' +%F | tr -d '\n'
;;
nextyear)
date -d '+1 year' +%F | tr -d '\n'
;;
lastyear)
date -d '-1 year' +%F | tr -d '\n'
;;
now)
date +'%FT%T %:z'
;;
*)
date
;;
esac
#set +x