Add to programs to install and gitignore

This commit is contained in:
Jonathan Hodgson 2019-08-06 19:33:14 +01:00
parent c6f7c10561
commit e5ae7ad4b5
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
mutt/msmtprc
mutt/accounts/*
/qutebrowser/.config/qutebrowser/qsettings/
/bin/.bin/pappy

View file

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