Browse Source

Added file to autogenerate notes file for the current year

Samuel W. Flint 8 years ago
parent
commit
6a3e12b09f
1 changed files with 21 additions and 0 deletions
  1. 21 0
      org-notes-file-current-year

+ 21 - 0
org-notes-file-current-year

@@ -0,0 +1,21 @@
+#!/bin/zsh -f
+
+YEAR=`date +"%Y"`
+
+if [[ ! -e ~/org/notes/${YEAR}.org ]] ; then
+    touch ~/org/notes/${YEAR}.org
+    cat <<EOF > ~/org/notes/${YEAR}.org
+#+Title: Notes from 2016
+#+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