#!/bin/bash # Install script for ntnsndr's Deb environment echo "Beginning install script for ntnsndr Deb environment" # First, some basic utilities sudo apt-get -y install xdg-open sudo apt-get install nodejs # TO DO git # Next, core apps (or are these already done by this point in order to get GitLab access?) # TO DO nextcloud # TO DO keepassxc # emacs sudo apt-get -y install emacs-gtk emacs --script install-emacs.el # pandoc sudo apt-get -y install pandoc sudo apt-get -y install pandoc-citeproc sudo apt-get -y install texlive sudo apt-get -y install lmodern # revealjs cd ~/.revealjs git clone https://github.com/hakimel/reveal.js.git cd reveal.js npm install cp ~/.revealjs/ntn.css ~/.revealjs/reveal.js/css/theme/ cd ~ # zotero echo "Go to https://www.zotero.org/download/, download, and put contents in /opt/zotero/ (using sudo)" echo "Done? Hit Enter" read response sudo /opt/zotero/set_launcher_icon ln -s /opt/zotero/zotero.desktop ~/.local/share/applications/zotero.desktop # If we change location, update that in .emacs AND pandout.sh script echo "Installation script complete"