From 46bdb882a998f7f1ac0d44662d26167110a1803e Mon Sep 17 00:00:00 2001 From: Nathan Schneider Date: Mon, 27 Jan 2020 02:48:02 +0000 Subject: [PATCH] Fixes to install-arch.sh script --- .scripts/install-arch.sh | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.scripts/install-arch.sh b/.scripts/install-arch.sh index 9576115..ca5b05f 100644 --- a/.scripts/install-arch.sh +++ b/.scripts/install-arch.sh @@ -3,10 +3,10 @@ echo "Beginning install script for ntnsndr Arch environment" -# First, some basic utilities MAKE ARCH-COMPATIBLE -pacman xdg-open -pacman -S nodejs npm -# TO DO git +# First, some basic utilities +sudo pacman -S xdg-open +sudo pacman -S nodejs npm +sudo pacman -S git # Ensure .bash_aliases works, not default on Arch cat > ~/.bashrc << EOF @@ -16,17 +16,18 @@ if [ -f ~/.bash_aliases ]; then EOF # Next, core apps -# TO DO nextcloud -# TO DO keepassxc +sudo pacman -S nextcloud-client +sudo pacman -S keepassxc +sudo pacman -S firefox-extension-keepassxc-browser -# emacs MAKE ARCH-COMPATIBLE -sudo apt-get -y install emacs-gtk +# emacs +sudo pacman -S emacs emacs --script install-emacs.el -# pandoc MAKE ARCH-COMPATIBLE -sudo apt-get -y install pandoc -sudo apt-get -y install pandoc-citeproc -sudo apt-get -y install texlive +# pandoc +sudo pacman -S pandoc +sudo pacman -S pandoc-citeproc +sudo pacman -S texlive # revealjs cd ~/.revealjs