mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
6 lines
207 B
Fish
6 lines
207 B
Fish
function quicknote --description "Write a quick note" -a "note"
|
|
note-dates
|
|
set time (date +"%I:%M%p" | tr '[:upper:]' '[:lower:]')
|
|
printf "\n\n---\n\n#### $time\n$note\n" >> $TODAY_NOTE_FILE
|
|
end
|