greyhoundforty
12/29/2015 - 8:01 PM

Monday morning taskpaper setup

Monday morning taskpaper setup

#!/usr/bin/env bash

dt=$(date -v -7d +"%m-%d-%y")

function archive() {
cd "$HOME/Dropbox/Listacular/"
mv "$HOME/Dropbox/Listacular/weeklyschedule.taskpaper" "$HOME/Dropbox/Listacular/Archive/$dt_weeklyschedule.taskpaper"
}

function writefile() {
cat <<EOF > weeklyschedule.taskpaper
Inbox Week Of $(date +"%m-%d-%y") - $(date -v +4d +"%m-%d-%y"):
- Go through pushbullet list

Monday $(date +"%m-%d-%y"):
- Morning workout at the Y (Legs/back) @workout
- Morning Sync meeting @start(9am)
- Start Release Notes @work
- Go through Trello/Prioritze @work
- Nightly walk after the kids are asleep @workout

Tuesday $(date -v +1d +"%m-%d-%y"):
- Morning workout at the Y (Arms/Chest/Shoulders) @workout
- Complete API Release notes and push to Github @work
- Go through 'Other Bookmarks' in Chrome and sort @organizing
- Plan out Week @work
- Nightly walk after the kids are asleep @workout

Wednesday $(date -v +2d +"%m-%d-%y"):
- Morning walk (2 laps around) @workout
- One project from 'Other Bookmarks' @learning
- Read with Liam @home

Thursday $(date -v +3d +"%m-%d-%y"):
- Morning workout at the Y (Legs/back) @workout
- Nightly walk after the kids are asleep @workout
- Computer project with Ryan Renee @home

Friday $(date -v +4d +"%m-%d-%y"):
- Morning workout at the Y (Arms/Chest/Shoulders) @workout
- Nightly walk after the kids are asleep @workout

EOF
}

archive
writefile