-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.sh
executable file
·54 lines (46 loc) · 1.55 KB
/
helpers.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
#!/usr/bin/env bash
# Helper functions for the bootstrap process
# Ensure Homebrew is in PATH before executing any brew commands
ensure_brew_in_path() {
if ! command -v brew >/dev/null 2>&1; then
if [[ $(uname -m) == 'arm64' ]]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
else
eval "$(/usr/local/bin/brew shellenv)"
fi
fi
}
# Function to set up dotfiles with GNU Stow
setup_stow() {
echo "Setting up dotfiles with GNU Stow..."
# Install GNU Stow if not already installed
if ! command -v stow >/dev/null 2>&1; then
echo "Installing GNU Stow..."
brew install stow
fi
# Create .stow-local-ignore file if it doesn't exist
if [ ! -f .stow-local-ignore ]; then
echo "Creating .stow-local-ignore file..."
echo ".DS_Store" > .stow-local-ignore
echo ".git" >> .stow-local-ignore
echo "*.sh" >> .stow-local-ignore
echo "README.md" >> .stow-local-ignore
echo "brewfile" >> .stow-local-ignore
fi
# Stow each directory
for dir in zsh git ssh config poshthemes; do
echo "Stowing $dir configuration..."
stow -v "$dir"
done
}
# Function to set up Oh-My-Posh
setup_oh_my_posh() {
echo "Setting up Oh-My-Posh..."
# Install Oh-My-Posh if not already installed
if ! command -v oh-my-posh >/dev/null 2>&1; then
echo "Installing Oh-My-Posh..."
brew install jandedobbeleer/oh-my-posh/oh-my-posh
fi
# Run the Oh-My-Posh setup script
./ohmyposh/oh-my-posh-setup.sh
}