Files
dotfiles/.scripts/install-deb.sh
T

56 lines
1.5 KiB
Bash
Executable File

#!/bin/bash
# Install script for ntnsndr's Deb environment
echo "Beginning install script for ntnsndr Deb environment"
# 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
# emacs
sudo apt -y install emacs-gtk
sudo apt -y install aspell aspell-en
emacs --script ~/.scripts/install-emacs.el
# pandoc
sudo apt -y install pandoc
sudo apt -y install pandoc-citeproc
sudo apt -y install texlive
sudo apt -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 ~
# fonts
mkdir .fonts/
echo "Download TTF fonts and put them in ~/.fonts:"
echo "https://copyfonts.com/download/din-regular.html"
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
echo "Installation script complete"