-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
43 lines (37 loc) · 1.38 KB
/
install.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
#!/bin/sh
echo "
################################################################################
# Pre-Setup: Consider stopping the script installing some packages
# (e.g. fish, git, python, bat, vidir, alacritty, tmux, ...)
################################################################################
"
echo -n "Press ENTER to continue"
read _
echo "
################################################################################
# Clone the dotfiles repo into ~/dotfiles
################################################################################
"
git clone --recursive https://github.com/nathanaelbosch/dotfiles.git ~/dotfiles
cd ~/dotfiles
echo "
################################################################################
# Install the dotdrop requirements into a new venv
################################################################################
"
python3 -m venv .venv
. .venv/bin/activate
pip install -r dotdrop/requirements.txt
# Install the dotfiles
echo "
################################################################################
# Install the dotfiles (if the hostname exists in the config file)
################################################################################
"
echo -e "Please enter the profile to be used (leave empty to use hostname): "
read profile
if [ -z "$profile" ]; then
./dotdrop.sh install
else
./dotdrop.sh install -p $profile
fi