From 95cf5b297c475f3817075a8a8d0d7c742a5901d5 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 20 Jan 2022 00:03:58 -0300 Subject: [PATCH] Remove hardcoded code --- scripts/linkFiles.sh | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 971f14e..d331c17 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -46,13 +46,9 @@ linkFile() { loopThroughFiles() { SADEDOT=$(pwd -P) DOTFILES="$SADEDOT/dotfiles" - DOTFILES_CONFIG="$DOTFILES/.config" - DOTFILES_LOCAL="$DOTFILES/.local" - DOTFILES_ICONS="$DOTFILES/.icons" - DOTFILES_SSH="$DOTFILES/.ssh" local IFS=$'\n' - for srcFile in $(find -H "$DOTFILES" -not -path '*.git*' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*' -not -path '*other*'); do + for srcFile in $(find -H "$DOTFILES" -maxdepth 1 -type f); do if [ "$(basename "${srcFile}")" = "dotfiles" ]; then continue fi @@ -62,7 +58,7 @@ loopThroughFiles() { fi done - for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH" "$DOTFILES_LOCAL"; do + for initialFolder in $(find -H "$DOTFILES" -maxdepth 1 -mindepth 1 -type d -not -path '*other*'); do for srcFile in $(find -H "$initialFolder"); do if [[ -d "$srcFile" ]]; then var=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\//, ""); print }') @@ -79,10 +75,8 @@ loopThroughFiles() { done done - DOTFILES_OTHER=$DOTFILES/other - - if [ -d "$DOTFILES_OTHER" ]; then - filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*dotfiles\/other\//, ""); print }') + if [ -d "$DOTFILES/other" ]; then + filesOutput=$(find -H "$DOTFILES/other" | sed -n 2~1p | awk '{ sub(/.*dotfiles\/other\//, ""); print }') files=""; for item in $filesOutput; do files="${files}$item\n" done @@ -99,10 +93,11 @@ runDetachedScript() { source scripts/common.sh setDialogBox "$1" - DOTFILES_OTHER=$(pwd -P)/dotfiles/other + SADEDOT=$(pwd -P) + DOTFILES="$SADEDOT/dotfiles" local IFS=$'\n' - for srcFile in $(find -H "$DOTFILES_OTHER"); do + for srcFile in $(find -H "$DOTFILES/other" -mindepth 1); do if [[ -d "$srcFile" ]]; then var=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }')