Skip to content

Instantly share code, notes, and snippets.

@greyhoundforty
Created December 29, 2015 20:01
Show Gist options
  • Save greyhoundforty/19eacd06b2891d0e5f9f to your computer and use it in GitHub Desktop.
Save greyhoundforty/19eacd06b2891d0e5f9f to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment