From 2033123873d20eec8eed9c739612a55a839ec1d1 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 21 Dec 2021 23:00:25 -0300 Subject: [PATCH] Update scripts --- scripts/bootstrap.sh | 7 ++++++- scripts/install.sh | 26 +++++++++++++++++++++----- 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 59b7782..2fa1a46 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,6 +1,11 @@ #!/bin/sh getGitconfigData() { + dialog --stdout --yesno "Would you like to set up gitconfig?" 10 60 + if [ $? -eq 1 ]; then + return + fi + dialog --msgbox "Now, I will ask you for data to set up gitconfig personal account." 10 60 gitPersonalName=$(dialog --inputbox "Enter a name." 10 60 3>&1 1>&2 2>&3 3>&1) gitPersonalMail=$(dialog --inputbox "Enter a mail." 10 60 3>&1 1>&2 2>&3 3>&1) @@ -20,7 +25,7 @@ getGitconfigData() { startRice() { dialog --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles. Make sure to backup your dotfiles!" 10 60 - # getGitconfigData + getGitconfigData ./scripts/linkFiles.sh diff --git a/scripts/install.sh b/scripts/install.sh index 33b2f0c..87e88ec 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -4,12 +4,28 @@ DOTFILES_CONFIG=$HOME/test/.config cd $DOTFILES_CONFIG -git clone https://github.com/santilococo/dwmblocks.git -git clone https://github.com/santilococo/dwm.git -git clone https://github.com/santilococo/st.git -git clone https://github.com/santilococo/dmenu.git +downloaded=false -sudo echo -n +if [[ ! -d "dwmblocks" ]]; then + git clone https://github.com/santilococo/dwmblocks.git + downloaded=true +fi +if [[ ! -d "dwm" ]]; then + git clone https://github.com/santilococo/dwm.git + downloaded=true +fi +if [[ ! -d "st" ]]; then + git clone https://github.com/santilococo/st.git + downloaded=true +fi +if [[ ! -d "dmenu" ]]; then + git clone https://github.com/santilococo/dmenu.git + downloaded=true +fi + +if [ downloaded = true ]; then + sudo echo -n +fi #cd dwmblocks && sudo make install #cd dwm && sudo make install