vault backup: 2025-02-20 17:15:59

This commit is contained in:
Dane Sabo 2025-02-20 17:15:59 -05:00
parent 3d93aeeeb5
commit 2b5d78edef
3 changed files with 16 additions and 3 deletions

View File

@ -34,6 +34,11 @@
"type": "local", "type": "local",
"color": "#c787d9", "color": "#c787d9",
"directory": "900s Calendars/Teaching" "directory": "900s Calendars/Teaching"
},
{
"type": "local",
"color": "#c76060",
"directory": "900s Calendars/Personal"
} }
], ],
"defaultCalendar": 0, "defaultCalendar": 0,

View File

@ -0,0 +1,8 @@
---
title: Drive home
allDay: false
startTime: 11:30
endTime: 12:00
date: 2025-02-21
completed: null
---

View File

@ -158,18 +158,18 @@ $folder_md"
#echo "Prompt:" #echo "Prompt:"
#echo "=================" #echo "================="
#echo $prompt #echo $prompt
summary=$(/usr/local/bin/ollama run llama3.2 "$prompt") #summary=$(/usr/local/bin/ollama run llama3.2 "$prompt")
#echo "" #echo ""
#echo "Summary:" #echo "Summary:"
#echo "=================" #echo "================="
echo $summary #echo $summary
# Build the full new content: static portion + summary section. # Build the full new content: static portion + summary section.
{ {
cat "$tmp_static" cat "$tmp_static"
echo "## Summary" echo "## Summary"
echo "$summary" # echo "$summary"
echo "" echo ""
echo "Generated by llama3.2:latest" echo "Generated by llama3.2:latest"
} > "$readme" } > "$readme"