Adds Arch Linux packages I use a lot.

This commit is contained in:
Ian Adam Naval 2014-03-26 21:56:25 -04:00
parent 196e3132c2
commit 21fa58bf72
2 changed files with 27 additions and 0 deletions

11
arch/all.pkglist Normal file
View File

@ -0,0 +1,11 @@
awesome
awesome-gnome
file-roller
git
sudo
tmux
ttf-meslo
vi
vim
wget
zsh

16
arch/install-packages.sh Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env bash
#
# Installs arch packages. Not meant to be run by install-dotfiles.sh
set -e
if [ ! -f /etc/arch-release ]
then
exit 1
fi
for pkglist in `find . -name \*.pkglist`
do
echo $pkglist
cat $pkglist | xargs pacaur -S
done