A few extra utility installs

This commit is contained in:
Nathan Schneider
2022-01-03 22:01:34 +00:00
parent 6aebcbf3f4
commit f299cceaed
+19 -8
View File
@@ -3,16 +3,15 @@
echo "Beginning install script for ntnsndr Deb environment" 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 xdg-open
sudo apt -y install nodejs sudo apt -y install nodejs
sudo apt -y install flatpak 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 # emacs
sudo apt -y install emacs-gtk sudo apt -y install emacs-gtk
@@ -33,11 +32,23 @@ npm install
cp ~/.revealjs/ntn.css ~/.revealjs/reveal.js/css/theme/ cp ~/.revealjs/ntn.css ~/.revealjs/reveal.js/css/theme/
cd ~ 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 # zotero
echo "Restart the computer to finish flatpak installation, then run" echo "Restart the computer to finish flatpak installation, then run"
echo "flatpak install flathub org.zotero.Zotero" echo "flatpak install flathub org.zotero.Zotero"
echo "Then install"
echo "And be sure that the default data location is ~/Zotero"
echo "Good?" echo "Good?"
read response read response
# If we change data location from the default ~/Zotero, update that in .emacs AND pandout.sh
echo "Installation script complete" echo "Installation script complete"