diff --git a/README.md b/README.md index 6afefa6..95a66d3 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Clone the repo. Run ```bash -./scripts/linkFiles.sh +./scripts/bootstrap.sh ``` and it will create symbolic links to the dotfiles in this repo. diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 2fa1a46..0cde107 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -24,13 +24,9 @@ getGitconfigData() { 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 - clear } diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 3fda3fd..be4b1a6 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -43,42 +43,46 @@ linkFile() { fi } -lastFolder=$(pwd -P) +loopThroughFiles() { + lastFolder=$(pwd -P) -DOTFILES=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }') -cd $DOTFILES + DOTFILES=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }') + cd $DOTFILES -DOTFILES_HOME=$DOTFILES/dotfiles -DOTFILES_CONFIG="$DOTFILES_HOME/.config" -DOTFILES_LOCAL="$DOTFILES_HOME/.local" -DOTFILES_ICONS="$DOTFILES_HOME/.icons" -DOTFILES_SSH="$DOTFILES_HOME/.ssh" + DOTFILES_HOME=$DOTFILES/dotfiles + DOTFILES_CONFIG="$DOTFILES_HOME/.config" + DOTFILES_LOCAL="$DOTFILES_HOME/.local" + DOTFILES_ICONS="$DOTFILES_HOME/.icons" + DOTFILES_SSH="$DOTFILES_HOME/.ssh" -for srcFile in $(find -H "$DOTFILES_HOME" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*'); do - if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then - continue - fi - - if [[ -f "$srcFile" ]]; then - linkFile "$srcFile" "$HOME/test/$(basename "${srcFile}")" - fi -done - -for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH" "$DOTFILES_LOCAL"; do - for srcFile in $(find -H "$initialFolder"); do - if [[ -d "$srcFile" ]]; then - var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }') - - if [[ ! -d "$HOME/test/$var" ]]; then - mkdir -p "$HOME/test/$var" - fi + for srcFile in $(find -H "$DOTFILES_HOME" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*'); do + if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then + continue fi if [[ -f "$srcFile" ]]; then - var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }') - linkFile "$srcFile" "$HOME/test/$var" + linkFile "$srcFile" "$HOME/test/$(basename "${srcFile}")" fi done -done -cd $lastFolder \ No newline at end of file + for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH" "$DOTFILES_LOCAL"; do + for srcFile in $(find -H "$initialFolder"); do + if [[ -d "$srcFile" ]]; then + var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }') + + if [[ ! -d "$HOME/test/$var" ]]; then + mkdir -p "$HOME/test/$var" + fi + fi + + if [[ -f "$srcFile" ]]; then + var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }') + linkFile "$srcFile" "$HOME/test/$var" + fi + done + done + + cd $lastFolder +} + +loopThroughFiles \ No newline at end of file