diff --git a/.scripts/install-deb.sh b/.scripts/install-deb.sh index 8bbb332..2c796a9 100644 --- a/.scripts/install-deb.sh +++ b/.scripts/install-deb.sh @@ -3,16 +3,15 @@ echo "Beginning install script for ntnsndr Deb environment" -# First, some basic utilities +# Initial utilities +sudo add-apt-repository ppa:nextcloud-devs/client +sudo apt -y update && apt upgrade +sudo apt -y install nextcloud-desktop nautilus-nextcloud +sudo apt -y install keepassxc +sudo apt -y install git sudo apt -y install xdg-open sudo apt -y install nodejs sudo apt -y install flatpak -sudo apt -y install nautilus-nextcloud -# 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 -y install emacs-gtk @@ -33,11 +32,23 @@ npm install cp ~/.revealjs/ntn.css ~/.revealjs/reveal.js/css/theme/ cd ~ +# fonts +mkdir .fonts/ +echo "Download TTF fonts and put them in ~/.fonts:" +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)" +echo "https://www.latofonts.com/lato-free-fonts/ (office system)" +echo "Good?" +read response + # zotero echo "Restart the computer to finish flatpak installation, then run" echo "flatpak install flathub org.zotero.Zotero" +echo "Then install" +echo "And be sure that the default data location is ~/Zotero" echo "Good?" read response -# If we change data location from the default ~/Zotero, update that in .emacs AND pandout.sh + echo "Installation script complete"