dotfiles/scripts/todo
tavo-wasd 8b7ef2ba49 todo
2023-06-02 09:14:58 -06:00

11 lines
289 B
Bash
Executable file

#!/usr/bin/env bash
currweek="# Week $(date '+%U')"
if $(head -n1 ~/Documents/notes/note-todo.md | grep -q "^$currweek") ; then
bat -pp ~/Documents/notes/note-todo.md
else
sed -i "1s/^/$currweek\n/" ~/Documents/notes/note-todo.md
"$EDITOR" ~/Documents/notes/note-todo.md
fi