Remove hardcoded code
This commit is contained in:
parent
1abe59c18b
commit
95cf5b297c
|
@ -46,13 +46,9 @@ linkFile() {
|
||||||
loopThroughFiles() {
|
loopThroughFiles() {
|
||||||
SADEDOT=$(pwd -P)
|
SADEDOT=$(pwd -P)
|
||||||
DOTFILES="$SADEDOT/dotfiles"
|
DOTFILES="$SADEDOT/dotfiles"
|
||||||
DOTFILES_CONFIG="$DOTFILES/.config"
|
|
||||||
DOTFILES_LOCAL="$DOTFILES/.local"
|
|
||||||
DOTFILES_ICONS="$DOTFILES/.icons"
|
|
||||||
DOTFILES_SSH="$DOTFILES/.ssh"
|
|
||||||
|
|
||||||
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" -maxdepth 1 -type f); do
|
||||||
if [ "$(basename "${srcFile}")" = "dotfiles" ]; then
|
if [ "$(basename "${srcFile}")" = "dotfiles" ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
@ -62,7 +58,7 @@ loopThroughFiles() {
|
||||||
fi
|
fi
|
||||||
done
|
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
|
for srcFile in $(find -H "$initialFolder"); do
|
||||||
if [[ -d "$srcFile" ]]; then
|
if [[ -d "$srcFile" ]]; then
|
||||||
var=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\//, ""); print }')
|
var=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\//, ""); print }')
|
||||||
|
@ -79,10 +75,8 @@ loopThroughFiles() {
|
||||||
done
|
done
|
||||||
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=""; for item in $filesOutput; do
|
||||||
files="${files}$item\n"
|
files="${files}$item\n"
|
||||||
done
|
done
|
||||||
|
@ -99,10 +93,11 @@ runDetachedScript() {
|
||||||
source scripts/common.sh
|
source scripts/common.sh
|
||||||
setDialogBox "$1"
|
setDialogBox "$1"
|
||||||
|
|
||||||
DOTFILES_OTHER=$(pwd -P)/dotfiles/other
|
SADEDOT=$(pwd -P)
|
||||||
|
DOTFILES="$SADEDOT/dotfiles"
|
||||||
|
|
||||||
local IFS=$'\n'
|
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
|
if [[ -d "$srcFile" ]]; then
|
||||||
var=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }')
|
var=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue