Check for dependencies
This commit is contained in:
parent
da454bfd12
commit
e826c59812
|
@ -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
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue