Set Zotero installation method to flatpak rather than .deb in install-deb.sh

This commit is contained in:
Nathan Schneider
2020-05-18 22:29:37 +00:00
parent 58a822545b
commit 35f495d293
2 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -40,6 +40,6 @@ cd ~
# zotero # zotero
sudo snap install zotero sudo snap install zotero
# If we change location, update that in .emacs AND pandout.sh script # If we change data location from the default ~/Zotero, update that in .emacs AND pandout.sh
echo "Installation script complete" echo "Installation script complete"
+13 -13
View File
@@ -4,8 +4,9 @@
echo "Beginning install script for ntnsndr Deb environment" echo "Beginning install script for ntnsndr Deb environment"
# First, some basic utilities # First, some basic utilities
sudo apt-get -y install xdg-open sudo apt -y install xdg-open
sudo apt-get install nodejs sudo apt -y install nodejs
sudo apt -y install flatpak
# TO DO git # TO DO git
# Next, core apps (or are these already done by this point in order to get GitLab access?) # Next, core apps (or are these already done by this point in order to get GitLab access?)
@@ -13,15 +14,15 @@ sudo apt-get install nodejs
# TO DO keepassxc # TO DO keepassxc
# emacs # emacs
sudo apt-get -y install emacs-gtk sudo apt -y install emacs-gtk
sudo apt-get -y install aspell aspell-en sudo apt -y install aspell aspell-en
emacs --script ~/.scripts/install-emacs.el emacs --script ~/.scripts/install-emacs.el
# pandoc # pandoc
sudo apt-get -y install pandoc sudo apt -y install pandoc
sudo apt-get -y install pandoc-citeproc sudo apt -y install pandoc-citeproc
sudo apt-get -y install texlive sudo apt -y install texlive
sudo apt-get -y install lmodern sudo apt -y install lmodern
# revealjs # revealjs
cd ~/.revealjs cd ~/.revealjs
@@ -32,11 +33,10 @@ cp ~/.revealjs/ntn.css ~/.revealjs/reveal.js/css/theme/
cd ~ cd ~
# zotero # zotero
echo "Go to https://www.zotero.org/download/, download, and put contents in /opt/zotero/ (using sudo)" echo "Restart the computer to finish flatpak installation, then run"
echo "Done? Hit Enter" echo "flatpak install flathub org.zotero.Zotero"
echo "Good?"
read response read response
sudo /opt/zotero/set_launcher_icon # If we change data location from the default ~/Zotero, update that in .emacs AND pandout.sh
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" echo "Installation script complete"