Updated after switching to Manjaro on Base

This commit is contained in:
Nathan Schneider
2022-03-07 22:38:00 -07:00
parent 1e7e4c39b7
commit 76e0c9daf9
3 changed files with 10 additions and 7 deletions
+2 -1
View File
@@ -127,7 +127,8 @@
"iconv -t utf-8 " tmp-in-file " | " ;; pipe in utf-8 for pandoc "iconv -t utf-8 " tmp-in-file " | " ;; pipe in utf-8 for pandoc
"pandoc -s" ;; embed full header in HTML "pandoc -s" ;; embed full header in HTML
" -f markdown+smart" ;; add curly quotes " -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 " -t " file-type
" -o " tmp-out-file)) " -o " tmp-out-file))
;; End convert routine ;; End convert routine
BIN
View File
Binary file not shown.
Regular → Executable
+8 -6
View File
@@ -17,6 +17,12 @@ if [ -f ~/.bash_aliases ]; then
fi fi
EOF 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 # emacs
sudo pacman -S emacs sudo pacman -S emacs
sudo pacman -S aspell-en # English dictionary sudo pacman -S aspell-en # English dictionary
@@ -24,9 +30,7 @@ emacs --script ~/.scripts/install-emacs.el
# pandoc # pandoc
sudo pacman -S pandoc sudo pacman -S pandoc
sudo pacman -S pandoc-citeproc sudo pacman -S texlive-core
sudo pacman -S texlive
sudo pacman -S lmodern
# revealjs # revealjs
cd ~/.revealjs cd ~/.revealjs
@@ -39,15 +43,13 @@ echo "Check correct versions between reveal and pandoc: https://github.com/jgm/p
read response read response
# zotero # zotero
sudo pacman -S zotero echo "Install Zotero from website and be sure that the default data location is ~/Zotero. Good?"
echo "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 # If we change data location from the default ~/Zotero, update that in .emacs AND pandout.sh
read response read response
# fonts # fonts
mkdir .fonts/ mkdir .fonts/
echo "Download TTF fonts and put them in ~/.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://fonts.google.com/specimen/Roboto (home system)"
echo "https://github.com/be5invis/Iosevka/releases/latest (home terminal)" echo "https://github.com/be5invis/Iosevka/releases/latest (home terminal)"
echo "https://github.com/JetBrains/JetBrainsMono/releases/latest (POP terminals)" echo "https://github.com/JetBrains/JetBrainsMono/releases/latest (POP terminals)"