-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.install
63 lines (49 loc) · 2.18 KB
/
.install
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
#! /usr/local/bin/bash
# # * Xcode CLI tools
xcode-select --install
# # * Homebrew
usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# # * Brew dependencies
if [ -f $HOME/.Brewfile ]; then
brew bundle --global;
fi
# # * Mackup
# restoring app data
# # * Session Buddy database
# osascript -e 'tell application "Google Chrome" to quit';
# if [ -f $sbdir/[1-9] ]; then
# cp --remove-destination -v $sbdir/[1-9] "$sbdb"
# fi
# # * Oh-My-Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
# # * Installing MySQL
# mysqladmin -u root password <yourpassword>
pip install tensorflow
npm install -g fileicon
npm install -g node-gyp
npm install -g bootstrap
npm install -g @angular/cli@latest
npm install -g express
npm install -g nodemon
npm install -g typescript
npm install -g eslint
npm install -g npmlist
# # * Apps (open audible, live home 3d pro, logic pro x)
cp -r $HOME/Library/Mobile\ Documents/iCloud~com~belightsoft~LiveHome3D/Documents/Live\ Home\ 3D\ Pro/Live\ Home\ 3D\ Pro.app /Applications/
cp -zur $HOME/Library/Mobile\ Documents/com~apple~CloudDocs/Live\ Home\ 3D\ Pro/Live\ Home\ 3D\ Pro.app /Applications/
cp -zur $HOME/Library/Mobile\ Documents/com~apple~CloudDocs/Logic\ Pro\ X/Logic\ Pro\ X.app /Applications/
cp -zur $HOME/Library/Mobile\ Documents/com~apple~CloudDocs/Open\ Audible/OpenAudible.app /Applications/
# # * Fonts (system = /Library/Fonts | user = $HOME/Library/Fonts)
for font in $HOME/.dotfiles/.font/{avantgardepro,gotham,hack,operator-mono}/*.{otf,ttf}; do
[ -f $font ] && cp $font $HOME/Library/Fonts;
done;
unset font;
# # * Font collections (Bug - does not copy collection with a space in the name)
for fontCollection in $HOME/.dotfiles/.font/FontCollections/*; do
[ -f $fontCollection ] && cp $fontCollection $HOME/Library/FontCollections;
done;
unset fontCollection;
# # * Terminal Profiles
cp -ur $HOME/.dotfiles/.terminal/*.json $HOME/Library/Application\ Support/iTerm2/DynamicProfiles
# # * VS Code Extensions
code --install-extension $HOME/.dotfiles/.vscode/.vscode