diff --git a/.emacs b/.emacs index dde587f..84b7cb2 100644 --- a/.emacs +++ b/.emacs @@ -127,7 +127,8 @@ "iconv -t utf-8 " tmp-in-file " | " ;; pipe in utf-8 for pandoc "pandoc -s" ;; embed full header in HTML " -f markdown+smart" ;; add curly quotes - " --bibliography $HOME/Zotero/lib.bib" ;; connect to BibTeX export from Zotero + ;; remove "--citeproc" for older versions + " --citeproc --bibliography $HOME/Zotero/lib.bib" ;; connect to BibTeX export from Zotero " -t " file-type " -o " tmp-out-file)) ;; End convert routine diff --git a/.fonts/dinreg.ttf b/.fonts/dinreg.ttf new file mode 100644 index 0000000..90a022c Binary files /dev/null and b/.fonts/dinreg.ttf differ diff --git a/.scripts/install-arch.sh b/.scripts/install-arch.sh old mode 100644 new mode 100755 index f801d10..14d115b --- a/.scripts/install-arch.sh +++ b/.scripts/install-arch.sh @@ -17,6 +17,12 @@ if [ -f ~/.bash_aliases ]; then fi EOF +# Canon printer +sudo pacman -S cndrvcups-lb +sudo pacman -S system-config-printer +echo "At the end, use the Print Settings GUI to set up the printer" +read response + # emacs sudo pacman -S emacs sudo pacman -S aspell-en # English dictionary @@ -24,9 +30,7 @@ emacs --script ~/.scripts/install-emacs.el # pandoc sudo pacman -S pandoc -sudo pacman -S pandoc-citeproc -sudo pacman -S texlive -sudo pacman -S lmodern +sudo pacman -S texlive-core # revealjs cd ~/.revealjs @@ -39,15 +43,13 @@ echo "Check correct versions between reveal and pandoc: https://github.com/jgm/p read response # zotero -sudo pacman -S zotero -echo "Be sure that the default data location is ~/Zotero. Good?" +echo "Install Zotero from website and be sure that the default data location is ~/Zotero. Good?" # If we change data location from the default ~/Zotero, update that in .emacs AND pandout.sh read response # fonts mkdir .fonts/ echo "Download TTF fonts and put them in ~/.fonts:" -echo "https://fontlibrary.org/en/font/d-din" echo "https://fonts.google.com/specimen/Roboto (home system)" echo "https://github.com/be5invis/Iosevka/releases/latest (home terminal)" echo "https://github.com/JetBrains/JetBrainsMono/releases/latest (POP terminals)"