forked from driesvints/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fresh.sh
executable file
·47 lines (34 loc) · 1.4 KB
/
fresh.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
#!/bin/sh
echo "Setting up your Mac..."
# Check for pnpm and install if we don't have it
if test ! $(which pnpm); then
/bin/sh -c "$(curl -fsSL https://get.pnpm.io/install.sh)"
fi
# Check for kitty and install if we don't have it
if test ! $(which kitty); then
/bin/sh -c "$(curl -fsSL https://sw.kovidgoyal.net/kitty/installer.sh)"
fi
# Install Node using pnpm env
pnpm env use --global lts
# 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
# Make .hushlogin file to remove Last Login message
touch ~/.hushlogin
# Removes .zshrc from $HOME (if it exists) and symlinks the .zshrc file from the .dotfiles
rm -rf $HOME/.zshrc
ln -sw $HOME/.dotfiles/.zshrc $HOME/.zshrc
# Removes .config from $HOME (if it exists) and symlinks the .config dir from the .dotfiles
rm -rf $HOME/.config
ln -sw $HOME/.dotfiles/config $HOME/.config
# Update Homebrew recipes
brew update
# Install all our dependencies with bundle (See Brewfile)
brew bundle --file ./Brewfile
# Set Keka as the default compression application
/Applications/KekaExternalHelper.app/Contents/MacOS/KekaExternalHelper -s
# Set macOS preferences - we will run this last because this will reload the shell
source ./.macos