mirror of
https://github.com/CompeyDev/dotfiles.git
synced 2024-12-12 04:40:37 +00:00
30 lines
647 B
Bash
30 lines
647 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
git submodule init
|
|
git submodule update
|
|
|
|
declare -a deps=("zsh" "zsh-autosuggestions" "zsh-syntax-highlighting" "starship" "exa" "bat" "fastfetch" "stow")
|
|
|
|
echo ""
|
|
echo "#############################"
|
|
echo " Checking for dependencies..."
|
|
echo "#############################"
|
|
|
|
for dep in ${deps[@]}
|
|
do
|
|
if ! which $dep 2>/dev/null; then
|
|
echo "[!] Dependency $dep not found!"
|
|
sudo pacman -Syy --noconfirm "$dep"
|
|
else
|
|
echo -e "\e[1A\e[K[*] FOUND: $dep"
|
|
fi
|
|
done
|
|
|
|
echo ""
|
|
echo "Stowing apps for user: ${whoami}"
|
|
|
|
find * -maxdepth 1 -exec "stow -v -R -t $HOME {}" \;
|
|
|
|
echo ""
|
|
echo "##### ALL DONE"
|