-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·82 lines (72 loc) · 1 KB
/
Copy pathsetup.sh
File metadata and controls
executable file
·82 lines (72 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash
set -x
HERE=$(dirname $0)
read -r -d '' TAPS <<EOF
AdoptOpenJDK/openjdk
theseal/blank-screensaver
homebrew/cask-fonts
EOF
read -r -d '' BOTTLES <<EOF
awscli
composer
go
gradle
gradle-completion
htop
httpie
jq
ncdu
node@10
node@12
telnet
tmux
tree
watch
watchman
wget
yarn
EOF
read -r -d '' CASKS <<EOF
adoptopenjdk
adoptopenjdk8
cyberduck
discretescroll
disk-inventory-x
firefox
font-fira-mono-for-powerline
font-menlo-for-powerline
google-backup-and-sync
google-chrome
google-drive-file-stream
handbrake
imageoptim
insomnia
iterm2
jetbrains-toolbox
keepassxc
rcdefaultapp
react-native-debugger
scroll-reverser
slack
sourcetree
spotify
steam
teamviewer
telegram
visual-studio-code
vlc
vmware-fusion
EOF
# Install brew
if ! brew list >/dev/null; then
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
for tap in $TAPS; do
brew tap $tap
done
for cask in $CASKS; do
brew cask install $cask
done
for bottle in $BOTTLES; do
brew install $bottle
done