Check for dependencies

This commit is contained in:
Santiago Lo Coco 2021-12-22 12:28:04 -03:00
parent da454bfd12
commit e826c59812
2 changed files with 41 additions and 28 deletions

View File

@ -22,7 +22,21 @@ getGitconfigData() {
sed -e "s/WORK_NAME/$gitWorkName/g" -e "s/WORK_MAIL/$gitWorkMail/g" ./templates/.gitconfig-work > ./dotfiles/.gitconfig-work
}
checkForDependencies() {
unameOutput=$(uname -a | grep "arch")
if [ -f "/etc/arch-release" ] || [ $unameOutput -eq 0 ]; then
pacman --noconfirm --needed -Sy dialog > /dev/null 2>&1 || echo "You must run this script as root and have an active internet connection." >&2 || exit 1
fi
commOuput=$(command -v dialog &> /dev/null)
if [ $? -eq 1 ]; then
echo "You must install dialog." >&2 || exit 1
fi
}
startRice() {
checkForDependencies
lastFolder=$(pwd -P)
cocoRiceFolder=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }')
cd $cocoRiceFolder
@ -30,7 +44,7 @@ startRice() {
dialog --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles. Make sure to backup your dotfiles!" 10 60
getGitconfigData
./scripts/linkFiles.sh
./scripts/install.sh
# ./scripts/install.sh
dialog --title "CocoRice" --msgbox "All done! Enjoy..." 10 60
clear

View File

@ -1,33 +1,32 @@
#!/bin/sh
DOTFILES_CONFIG=$HOME/test/.config
makeInstall() {
cd $1
make install
cd ..
}
cd $DOTFILES_CONFIG
downloadAndInstallPackages() {
DOTFILES_CONFIG=$HOME/test/.config
downloaded=false
cd $DOTFILES_CONFIG
if [[ ! -d "dwmblocks" ]]; then
git clone --progress https://github.com/santilococo/dwmblocks.git 2>&1 | dialog --progressbox "Downloading dwmblocks" 10 60
downloaded=true
fi
if [[ ! -d "dwm" ]]; then
git clone --progress https://github.com/santilococo/dwm.git 2>&1 | dialog --progressbox "Downloading dwm" 10 60
downloaded=true
fi
if [[ ! -d "st" ]]; then
git clone --progress https://github.com/santilococo/st.git 2>&1 | dialog --progressbox "Downloading st" 10 60
downloaded=true
fi
if [[ ! -d "dmenu" ]]; then
git clone --progress https://github.com/santilococo/dmenu.git 2>&1 | dialog --progressbox "Downloading dmenu" 10 60
downloaded=true
fi
if [[ ! -d "dwmblocks" ]]; then
git clone --progress https://github.com/santilococo/dwmblocks.git 2>&1 | dialog --progressbox "Downloading dwmblocks" 10 60
makeInstall "dwmblocks"
fi
if [[ ! -d "dwm" ]]; then
git clone --progress https://github.com/santilococo/dwm.git 2>&1 | dialog --progressbox "Downloading dwm" 10 60
makeInstall "dwm"
fi
if [[ ! -d "st" ]]; then
git clone --progress https://github.com/santilococo/st.git 2>&1 | dialog --progressbox "Downloading st" 10 60
makeInstall "st"
fi
if [[ ! -d "dmenu" ]]; then
git clone --progress https://github.com/santilococo/dmenu.git 2>&1 | dialog --progressbox "Downloading dmenu" 10 60
makeInstall "dmenu"
fi
}
if [ downloaded = true ]; then
sudo echo -n
fi
#cd dwmblocks && sudo make install
#cd dwm && sudo make install
#cd st && sudo make install
#cd dmenu && sudo make install
downloadAndInstallPackages