Replace cocoRice with sadedot in linkFiles.sh

This commit is contained in:
Santiago Lo Coco 2022-01-18 22:11:14 -03:00
parent 90a0b0475e
commit a0c3fb3653
1 changed files with 8 additions and 8 deletions

View File

@ -44,8 +44,8 @@ linkFile() {
} }
loopThroughFiles() { loopThroughFiles() {
COCORICE=$(pwd -P) SADEDOT=$(pwd -P)
DOTFILES="$COCORICE/dotfiles" DOTFILES="$SADEDOT/dotfiles"
DOTFILES_CONFIG="$DOTFILES/.config" DOTFILES_CONFIG="$DOTFILES/.config"
DOTFILES_LOCAL="$DOTFILES/.local" DOTFILES_LOCAL="$DOTFILES/.local"
DOTFILES_ICONS="$DOTFILES/.icons" DOTFILES_ICONS="$DOTFILES/.icons"
@ -53,7 +53,7 @@ loopThroughFiles() {
local IFS=$'\n' 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" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*' -not -path '*other*'); do
if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then if [ "$(basename "${srcFile}")" = "sadedot" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then
continue continue
fi fi
@ -65,7 +65,7 @@ loopThroughFiles() {
for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH" "$DOTFILES_LOCAL"; do for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH" "$DOTFILES_LOCAL"; do
for srcFile in $(find -H "$initialFolder"); do for srcFile in $(find -H "$initialFolder"); do
if [[ -d "$srcFile" ]]; then if [[ -d "$srcFile" ]]; then
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }') var=$(echo "$srcFile" | awk '{ sub(/.*sadedot\/dotfiles\//, ""); print }')
if [[ ! -d "$HOME/$var" ]]; then if [[ ! -d "$HOME/$var" ]]; then
mkdir -p "$HOME/$var" mkdir -p "$HOME/$var"
@ -73,7 +73,7 @@ loopThroughFiles() {
fi fi
if [[ -f "$srcFile" ]]; then if [[ -f "$srcFile" ]]; then
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }') var=$(echo "$srcFile" | awk '{ sub(/.*sadedot\/dotfiles\//, ""); print }')
linkFile "$srcFile" "$HOME/$var" linkFile "$srcFile" "$HOME/$var"
fi fi
done done
@ -82,7 +82,7 @@ loopThroughFiles() {
DOTFILES_OTHER=$DOTFILES/other DOTFILES_OTHER=$DOTFILES/other
if [ -d "$DOTFILES_OTHER" ]; then if [ -d "$DOTFILES_OTHER" ]; then
filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }') filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*sadedot\/dotfiles\/other\//, ""); print }')
files=""; for item in $filesOutput; do files=""; for item in $filesOutput; do
files="${files}$item\n" files="${files}$item\n"
done done
@ -104,7 +104,7 @@ runDetachedScript() {
local IFS=$'\n' local IFS=$'\n'
for srcFile in $(find -H "$DOTFILES_OTHER"); do for srcFile in $(find -H "$DOTFILES_OTHER"); do
if [[ -d "$srcFile" ]]; then if [[ -d "$srcFile" ]]; then
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }') var=$(echo "$srcFile" | awk '{ sub(/.*sadedot\/dotfiles\/other\//, ""); print }')
if [[ ! -d "/$var" ]]; then if [[ ! -d "/$var" ]]; then
mkdir -p "/$var" mkdir -p "/$var"
@ -112,7 +112,7 @@ runDetachedScript() {
fi fi
if [[ -f "$srcFile" ]]; then if [[ -f "$srcFile" ]]; then
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }') var=$(echo "$srcFile" | awk '{ sub(/.*sadedot\/dotfiles\/other\//, ""); print }')
linkFile "$srcFile" "/$var" linkFile "$srcFile" "/$var"
fi fi
done done