-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.sh
executable file
·55 lines (39 loc) · 1.68 KB
/
bootstrap.sh
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
#!/bin/sh
echo "Setting up your Mac..."
unraid=
# Check for Oh My Zsh and install if we don't have it
if test ! $(which omz); then
/bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/HEAD/tools/install.sh)"
fi
# Check for Homebrew and install if we don't have it
if test ! $(which brew); then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $HOME/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
# Removes .zshrc from $HOME (if it exists) and symlinks the .zshrc file from the .dotfiles
rm -rf $HOME/.zshrc
ln -sf .dotfiles/.zshrc $HOME/.zshrc
# Update Homebrew recipes
brew update
# Install all our dependencies with bundle (See Brewfile)
brew tap homebrew/bundle
brew bundle --file ./Brewfile
# Create Applications/bin and .config directories
mkdir -p $HOME/Applications/bin
mkdir $HOME.config
# Create unraid mounts
mkdir $HOME/homedir-pbear
mkdir $HOME/downloads_unraid
mkdir $HOME/media
read -p 'Unraid server IP: ' unraid
# mount some personnal shares:
sudo mount -t nfs -o vers=4 $unraid:/mnt/user/homedir-pbear /Users/pbear/homedir-pbear
sudo mount -t nfs -o vers=4 $unraid:/mnt/user/media /Users/pbear/media
sudo mount -t nfs -o vers=4 $unraid:/mnt/user/downloads /Users/pbear/downloads_unraid
# Symlink the Mackup config file to the home directory
ln -sf .dotfiles/.mackup.cfg $HOME/.mackup.cfg
# Symlink the .config config files folder to the home directory
n -sf $HOME/Library/Mobile\ Documents/com\~apple\~CloudDocs/Backups/Mackup/.config $HOME/.config
# Set macOS preferences - we will run this last because this will reload the shell
source ./.macos