feat(notes): change file date format

This commit is contained in:
ayo 2026-06-28 21:06:43 +02:00
parent fd249e68f3
commit 3c304c5452

View file

@ -19,7 +19,7 @@ function createNote() {
exit 1;
fi;
file_date="$(date +'%Y.%m.%d')"
file_date="$(date +'%m.%d.%Y')"
file_name="$title.md"
full_path="${notes_dir}/${file_date}-${file_name}"