Updated .emacs a bit and changed install.sh to install-deb and install-arch
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
#!/bin/bash
|
||||
# Install script for ntnsndr Deb environment
|
||||
|
||||
echo "Beginning install script for ntnsndr Arch environment"
|
||||
|
||||
# First, some basic utilities MAKE ARCH-COMPATIBLE
|
||||
sudo apt-get -y install xdg-open
|
||||
|
||||
# Next, core apps
|
||||
# TO DO nextcloud
|
||||
# TO DO keepassxc
|
||||
# TO DO git
|
||||
|
||||
# emacs MAKE ARCH-COMPATIBLE
|
||||
sudo apt-get -y install emacs-gtk
|
||||
sudo apt-get -y install elpa-markdown-mode
|
||||
mkdir -p ~/.emacs.d/ && mkdir -p ~/.emacs.d/lisp/
|
||||
cd ~/.emacs.d/lisp/
|
||||
&& git clone git://github.com/bnbeckwith/wc-mode.git
|
||||
|
||||
# pandoc MAKE ARCH-COMPATIBLE
|
||||
sudo apt-get -y install pandoc
|
||||
sudo apt-get -y install pandoc-citeproc
|
||||
sudo apt-get -y install texlive
|
||||
|
||||
# revealjs
|
||||
# TO DO: https://github.com/hakimel/reveal.js/
|
||||
|
||||
# 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"
|
||||
Reference in New Issue
Block a user