Refactor and update README.md
This commit is contained in:
parent
2033123873
commit
2e3d6e8c5c
|
@ -17,7 +17,7 @@ Clone the repo.
|
||||||
Run
|
Run
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./scripts/linkFiles.sh
|
./scripts/bootstrap.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
and it will create symbolic links to the dotfiles in this repo.
|
and it will create symbolic links to the dotfiles in this repo.
|
||||||
|
|
|
@ -24,13 +24,9 @@ getGitconfigData() {
|
||||||
|
|
||||||
startRice() {
|
startRice() {
|
||||||
dialog --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles. Make sure to backup your dotfiles!" 10 60
|
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
|
./scripts/linkFiles.sh
|
||||||
|
|
||||||
./scripts/install.sh
|
./scripts/install.sh
|
||||||
|
|
||||||
clear
|
clear
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,42 +43,46 @@ linkFile() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
lastFolder=$(pwd -P)
|
loopThroughFiles() {
|
||||||
|
lastFolder=$(pwd -P)
|
||||||
|
|
||||||
DOTFILES=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }')
|
DOTFILES=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }')
|
||||||
cd $DOTFILES
|
cd $DOTFILES
|
||||||
|
|
||||||
DOTFILES_HOME=$DOTFILES/dotfiles
|
DOTFILES_HOME=$DOTFILES/dotfiles
|
||||||
DOTFILES_CONFIG="$DOTFILES_HOME/.config"
|
DOTFILES_CONFIG="$DOTFILES_HOME/.config"
|
||||||
DOTFILES_LOCAL="$DOTFILES_HOME/.local"
|
DOTFILES_LOCAL="$DOTFILES_HOME/.local"
|
||||||
DOTFILES_ICONS="$DOTFILES_HOME/.icons"
|
DOTFILES_ICONS="$DOTFILES_HOME/.icons"
|
||||||
DOTFILES_SSH="$DOTFILES_HOME/.ssh"
|
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
|
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
|
if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then
|
||||||
continue
|
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
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -f "$srcFile" ]]; then
|
if [[ -f "$srcFile" ]]; then
|
||||||
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }')
|
linkFile "$srcFile" "$HOME/test/$(basename "${srcFile}")"
|
||||||
linkFile "$srcFile" "$HOME/test/$var"
|
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
|
||||||
|
|
||||||
cd $lastFolder
|
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
|
Loading…
Reference in New Issue