16 lines
374 B
Bash
Executable File
16 lines
374 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Run the sub-scripts
|
|
/usr/local/bin/install-apk.sh
|
|
/usr/local/bin/install-rust.sh
|
|
/usr/local/bin/install-cargo-tools.sh
|
|
|
|
echo "Setting up dotfiles..."
|
|
mkdir -p $HOME/.config/dotfiles
|
|
if [ ! -d "$HOME/.config/dotfiles/.git" ]; then
|
|
git clone https://git.nubo.sh/hulthe/df.git $HOME/.config/dotfiles
|
|
fi
|
|
cd $HOME/.config/dotfiles
|
|
bash manager/setup.sh
|