123456789101112131415161718192021 |
- #!/bin/sh
- YEAR=`date +"%Y"`
- if [[ ! -e ~/org/notes/${YEAR}.org ]] ; then
- touch ~/org/notes/${YEAR}.org
- cat <<EOF > ~/org/notes/${YEAR}.org
- #+Title: Notes from ${YEAR}
- #+AUTHOR: Sam Flint
- #+EMAIL: swflint@flintfam.org
- #+DATE: \today
- #+INFOJS_OPT: view:info toc:nil path:http://flintfam.org/org-info.js
- #+OPTIONS: toc:nil H:5 ':t *:t d:nil stat:nil todo:nil
- #+LATEX_CLASS_OPTIONS: [10pt,twocolumn]
- #+LATEX_HEADER: \usepackage[landscape,margin=0.125 in]{geometry}
- #+LATEX_HEADER: \pagestyle{empty}
- EOF
- fi
- echo ~/org/notes/${YEAR}.org
|