Add to programs to install and gitignore

This commit is contained in:
Jonathan Hodgson 2019-08-06 19:33:14 +01:00
parent 17f6c822af
commit 499bcb16a8
2 changed files with 22 additions and 3 deletions

2
.gitignore vendored
View file

@ -5,3 +5,5 @@ pandoc/.pandoc/templates/assets/fonts/
bin/aquarius-go bin/aquarius-go
mutt/msmtprc mutt/msmtprc
mutt/accounts/* mutt/accounts/*
/qutebrowser/.config/qutebrowser/qsettings/
/bin/.bin/pappy

View file

@ -48,14 +48,31 @@ doStow(){
pacmanInstall(){ pacmanInstall(){
local packages=( local packages=(
"gvim" "arandr"
"zsh" "bat"
"blueberry"
"dunst"
"gimp"
"gimp-plugin-resynthensizer-git"
"gimp-plugin-saveforweb"
"git" "git"
"gvim"
"imagemagick"
"imagemagick-doc"
"inkscape"
"libreoffice-fresh"
"libreoffice-fresh-en-gb"
"pandoc" "pandoc"
"qutebrowser"
"ripgrep"
"stow" "stow"
"w3m"
"zathura"
"zsh"
) )
if pacman -Qs $package > /dev/null; then if pacman -Qs $package > /dev/null; then
echo "Install $i" echo "Installing $i"
sudo pacman -S $i
fi fi
} }