Saibotk
93f9700c2c
This one does not allow special chars like spaces, but is set anyway through the other commands.
68 lines
1.9 KiB
Bash
Executable file
68 lines
1.9 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# Exit on error
|
|
set -e
|
|
|
|
# Path to your dotfiles.
|
|
export DOTFILES=$HOME/.dotfiles
|
|
|
|
echo "Setting up your Mac..."
|
|
|
|
# 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
|
|
|
|
# Update Homebrew recipes
|
|
brew update
|
|
|
|
# Install all our dependencies with bundle (See Brewfile)
|
|
brew tap homebrew/bundle
|
|
|
|
brew bundle --file ${DOTFILES}/macos/Brewfile
|
|
|
|
# Fix for https://github.com/Homebrew/homebrew-core/issues/74447
|
|
# gnupg is not really needed but marked as a dependency for pass
|
|
brew unlink gnupg
|
|
|
|
# Activate asimov to automatically exclude node_modules from TM backup
|
|
sudo brew services start asimov
|
|
|
|
# Enable corepack
|
|
corepack enable
|
|
|
|
# Herd setup
|
|
herd -n tld localhost
|
|
|
|
# Create a Sites directory
|
|
mkdir -p $HOME/git/clickbar
|
|
mkdir -p $HOME/git/konaktiva
|
|
mkdir -p $HOME/git/private
|
|
|
|
# Mark directories for herd
|
|
herd park $HOME/git/clickbar
|
|
herd park $HOME/git/private
|
|
|
|
# Install global Composer packages
|
|
composer global require tightenco/takeout
|
|
|
|
read -p "Enter a name for your MacBook, typically 'MacBook YOURNAME' [default: MacBook cb.]: " computername
|
|
computername=${computername:-MacBook cb.}
|
|
echo "Setting hostname to $computername"
|
|
|
|
# Set computer name (as done via System Preferences → Sharing)
|
|
sudo scutil --set ComputerName "$computername"
|
|
sudo scutil --set HostName "$computername"
|
|
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "$computername"
|
|
|
|
# Call the general install script to setup zsh etc.
|
|
source install.sh
|
|
|
|
echo "> FINISHED 🏁 The setup will now set some macOS preferences and exit afterwards."
|
|
read -p "Press enter to continue"
|
|
|
|
# Set macOS preferences - we will run this last because this will reload the shell
|
|
source ${DOTFILES}/macos/.macos
|