-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.sh
More file actions
executable file
·183 lines (152 loc) · 5.18 KB
/
bootstrap.sh
File metadata and controls
executable file
·183 lines (152 loc) · 5.18 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#!/usr/bin/env bash
if [ -z "${BREWFILEPATH:-}" ]; then
BREWFILEPATH=~/.dotfiles/Brewfile; export BREWFILEPATH
fi
if [ -z "${BREWFILE_PERSONAL_PATH:-}" ]; then
BREWFILE_PERSONAL_PATH=~/.dotfiles/BrewfilePersonal; export BREWFILE_PERSONAL_PATH
fi
if [ -z "${BREWFILE_XCODE_PATH:-}" ]; then
BREWFILE_XCODE_PATH=~/.dotfiles/BrewfileXcode; export BREWFILE_XCODE_PATH
fi
# Make sure you must login to Mac App Store
brew_bundle_install() {
command brew bundle --file $BREWFILEPATH
}
# Make sure you must login to Mac App Store
brew_bundle_personal_install() {
command brew bundle --file $BREWFILE_PERSONAL_PATH
}
# Make sure you must login to Mac App Store
# Xcode download/upgrade takes long time
# Avoid regular update routine
brew_bundle_xcode_install() {
command brew bundle --file $BREWFILE_XCODE_PATH
}
install_update_brew() {
if [ ! -x "`which brew`" ]; then
echo "Installing Homebrew... >"
command /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
command brew update
else
echo "Homebrew updating/upgrading... >"
command brew update
command brew upgrade
command brew cleanup
fi
}
install_update_volta() {
if [ ! -e "$HOME/.volta" ]; then
echo "Installing volta... >"
curl https://get.volta.sh | bash
else
echo "volta updating... >"
# volta does not have upgrade itself
# just re-run installer then it will be updated
curl https://get.volta.sh | bash
fi
}
install_nix() {
if [ ! -x "$(command -v nix)" ]; then
echo "Installing Nix... >"
curl -L https://nixos.org/nix/install | sh
# Source Nix environment for current session
if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then
. '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
fi
else
echo "Nix is already installed"
fi
# Create nix.conf if not exists
if [ ! -f "$HOME/.config/nix/nix.conf" ]; then
echo "Creating nix.conf... >"
mkdir -p "$HOME/.config/nix"
echo 'experimental-features = nix-command flakes' > "$HOME/.config/nix/nix.conf"
fi
# Run home-manager for the first time
echo "Running home-manager initial setup... >"
cd ~/.dotfiles
nix run home-manager/master -- switch --flake .#default --impure
}
home_manager_switch() {
echo "Running home-manager switch... >"
cd ~/.dotfiles
nix run home-manager/master -- switch --flake .#default --impure
}
nix_update() {
echo "Updating flake.lock... >"
cd ~/.dotfiles
nix flake update
echo "Running home-manager switch... >"
nix run home-manager/master -- switch --flake .#default --impure
}
# Ref: https://unix.stackexchange.com/questions/146570/arrow-key-enter-menu
# Renders a text based list of options that can be selected by the
# user using up, down and enter keys and returns the chosen option.
#
# Arguments : list of options, maximum of 256
# "opt1" "opt2" ...
# Return value: selected index (0 for opt1, 1 for opt2 ...)
select_option() {
# little helpers for terminal print control and key input
ESC=$( printf "\033")
cursor_blink_on() { printf "$ESC[?25h"; }
cursor_blink_off() { printf "$ESC[?25l"; }
cursor_to() { printf "$ESC[$1;${2:-1}H"; }
print_option() { printf "> $1 "; }
print_selected() { printf "> $ESC[7m $1 $ESC[27m"; }
get_cursor_row() { IFS=';' read -sdR -p $'\E[6n' ROW COL; echo ${ROW#*[}; }
key_input() { read -s -n3 key 2>/dev/null >&2
if [[ $key = $ESC[A ]]; then echo up; fi
if [[ $key = $ESC[B ]]; then echo down; fi
if [[ $key = "" ]]; then echo enter; fi; }
# initially print empty new lines (scroll down if at bottom of screen)
for opt; do printf "\n"; done
# determine current screen position for overwriting the options
local lastrow=`get_cursor_row`
local startrow=$(($lastrow - $#))
# ensure cursor and input echoing back on upon a ctrl+c during read -s
trap "cursor_blink_on; stty echo; printf '\n'; exit" 2
cursor_blink_off
local selected=0
while true; do
# print options by overwriting the last lines
local idx=0
for opt; do
cursor_to $(($startrow + $idx))
if [ $idx -eq $selected ]; then
print_selected "$opt"
else
print_option "$opt"
fi
((idx++))
done
# user key control
case `key_input` in
enter) break;;
up) ((selected--));
if [ $selected -lt 0 ]; then selected=$(($# - 1)); fi;;
down) ((selected++));
if [ $selected -ge $# ]; then selected=0; fi;;
esac
done
# cursor position back to normal
cursor_to $lastrow
printf "\n"
cursor_blink_on
return $selected
}
echo "Select one option using up/down keys and enter to confirm:"
echo ""
options=("Install/Update Brew" "Install Common Bundle" "Install Personal Bundle" "Install Xcode Bundle" "Install/Update volta" "Setup Nix (Initial)" "Apply Dotfiles Config" "Update Nix Packages")
select_option "${options[@]}"
choice=$?
case $choice in
0) install_update_brew ;;
1) brew_bundle_install ;;
2) brew_bundle_personal_install ;;
3) brew_bundle_xcode_install ;;
4) install_update_volta ;;
5) install_nix ;;
6) home_manager_switch ;;
7) nix_update ;;
esac