osx/custompkg/root/etc/skel/Library/user-setup/100.install-homebrew-apps.sh

76 lines
761 B
Bash
Raw Normal View History

2016-10-08 00:37:22 +00:00
#!/bin/bash
# set up paths and whatnot
source $HOME/.profile
HOMEBREW_PKGS="
2018-09-14 10:03:54 +00:00
asciinema
2016-10-08 00:37:22 +00:00
autoconf
automake
bash-completion
bash-git-prompt
bonnie++
byobu
cmake
coreutils
curl
daemontools
docker
docker-compose
docker-machine
duplicity
ffmpeg
fish
flac
geoip
ghc
gist
git
gnupg
gnupg2
go
gpg-agent
2017-01-09 02:51:33 +00:00
graphviz
httpie
2016-10-08 00:37:22 +00:00
homebrew/dupes/rsync
irssi
jq
2018-09-11 09:01:12 +00:00
kubernetes-cli
2016-10-08 00:37:22 +00:00
lame
2018-09-11 09:02:39 +00:00
mosh
2016-10-08 00:37:22 +00:00
mtr
mutt
nmap
node
pbzip2
2017-09-28 03:22:20 +00:00
pgpdump
2016-10-08 00:37:22 +00:00
pinentry-mac
protobuf
pv
pwgen
python3
2018-09-11 09:05:14 +00:00
rust
2016-10-08 00:37:22 +00:00
socat
sox
speedtest_cli
syncthing
tcptraceroute
terraform
tor
torsocks
unrar
unzip
vimpager
watch
wget
whatmask
2018-09-14 10:03:54 +00:00
corelocationcli
heroku
offlineimap
postgres
2016-10-08 00:37:22 +00:00
"
for PKG in $HOMEBREW_PKGS ; do
brew install $PKG
done