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

81 lines
973 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:06:34 +00:00
asciinema
autoconf
automake
bash-completion
bash-git-prompt
bonnie++
2019-03-29 02:48:26 +00:00
bwm-ng
2018-09-14 10:06:34 +00:00
byobu
cmake
corelocationcli
coreutils
curl
daemontools
docker
docker-compose
docker-machine
duplicity
ffmpeg
fish
flac
geoip
gist
git
gnupg
gnupg2
go
gpg-agent
graphviz
heroku
homebrew/dupes/rsync
httpie
httrack
2018-09-14 10:06:34 +00:00
irssi
jq
kubernetes-cli
lame
mosh
mtr
mutt
neovim
2018-09-14 10:06:34 +00:00
nmap
node
offlineimap
2019-04-03 15:19:42 +00:00
p7zip
2018-09-27 19:37:45 +00:00
par2
2018-09-14 10:06:34 +00:00
pbzip2
pgpdump
pinentry-mac
postgres
protobuf
pv
pwgen
python3
rust
socat
sox
speedtest_cli
syncthing
tcptraceroute
terraform
tor
torsocks
trash
2018-09-14 10:06:34 +00:00
unrar
unzip
vimpager
watch
wget
whatmask
2016-10-08 00:37:22 +00:00
"
for PKG in $HOMEBREW_PKGS ; do
brew install $PKG
done