2021-11-04 10:15:32 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
CONFIG="install.conf.yaml"
|
|
|
|
DOTBOT_DIR="dotbot"
|
|
|
|
|
|
|
|
DOTBOT_BIN="bin/dotbot"
|
|
|
|
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
|
|
|
|
cd "${BASEDIR}"
|
|
|
|
git -C "${DOTBOT_DIR}" submodule sync --quiet --recursive
|
2021-11-11 12:07:35 +00:00
|
|
|
git submodule update --init --recursive
|
2021-11-04 10:15:32 +00:00
|
|
|
|
2022-11-09 12:12:37 +00:00
|
|
|
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"
|
|
|
|
|
|
|
|
# Own Stuff
|
2022-04-04 12:54:52 +00:00
|
|
|
platform="$(uname -s)"
|
2022-11-09 12:12:37 +00:00
|
|
|
|
|
|
|
function uninstalled() {
|
2024-11-17 00:25:33 +00:00
|
|
|
if which "$1" >/dev/null; then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
2022-11-09 12:12:37 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 18:17:09 +00:00
|
|
|
# macOS
|
2022-04-04 12:54:52 +00:00
|
|
|
if [[ $platform == "Darwin" ]]; then
|
2024-11-17 00:25:33 +00:00
|
|
|
# Brew
|
|
|
|
if uninstalled brew; then
|
|
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
|
|
fi
|
|
|
|
brew bundle --no-lock --file ./files/Brewfile
|
|
|
|
|
|
|
|
# iTerm2
|
|
|
|
defaults write com.googlecode.iterm2.plist PrefsCustomFolder -string "~/.dotfiles/files/iterm2"
|
|
|
|
defaults write com.googlecode.iterm2.plist LoadPrefsFromCustomFolder -bool true
|
2022-04-04 12:54:52 +00:00
|
|
|
fi
|