Move 'other' folder and update scripts
This commit is contained in:
parent
55197a629f
commit
39291c0a8c
|
@ -107,10 +107,9 @@ checkForDependencies() {
|
||||||
}
|
}
|
||||||
|
|
||||||
startRice() {
|
startRice() {
|
||||||
|
|
||||||
displayDialogBox --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles."
|
displayDialogBox --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles."
|
||||||
getGitconfigData
|
getGitconfigData
|
||||||
# sh scripts/linkFiles.sh
|
sh scripts/linkFiles.sh
|
||||||
sh scripts/install.sh
|
sh scripts/install.sh
|
||||||
displayDialogBox --title "CocoRice" --msgbox "All done! Enjoy..."
|
displayDialogBox --title "CocoRice" --msgbox "All done! Enjoy..."
|
||||||
}
|
}
|
||||||
|
@ -126,7 +125,7 @@ runScript() {
|
||||||
|
|
||||||
startRice
|
startRice
|
||||||
|
|
||||||
# clear
|
clear
|
||||||
cd $lastFolder
|
cd $lastFolder
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,13 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
cloneAndMake() {
|
cloneAndMake() {
|
||||||
# git clone --progress $2 2>&1 | dialog --progressbox "Downloading ${1}" 0 0
|
displayDialogBox "Downloading ${1}" 0 0
|
||||||
whiptail "Downloading ${1}" 0 0
|
|
||||||
git clone $2 2>&1
|
git clone $2 2>&1
|
||||||
cd $1; sudo make install; cd ..
|
cd $1; sudo make install; cd ..
|
||||||
}
|
}
|
||||||
|
|
||||||
downloadAndInstallPackages() {
|
downloadAndInstallPackages() {
|
||||||
DOTFILES_CONFIG=$HOME/.config
|
DOTFILES_CONFIG=$HOME/.config
|
||||||
|
|
||||||
cd $DOTFILES_CONFIG
|
cd $DOTFILES_CONFIG
|
||||||
|
|
||||||
if [[ ! -d "dwmblocks" ]]; then
|
if [[ ! -d "dwmblocks" ]]; then
|
||||||
|
@ -29,4 +27,9 @@ downloadAndInstallPackages() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
downloadAndInstallPackages
|
runScript() {
|
||||||
|
source scripts/common.sh
|
||||||
|
downloadAndInstallPackages
|
||||||
|
}
|
||||||
|
|
||||||
|
runScript
|
||||||
|
|
|
@ -14,7 +14,7 @@ linkFile() {
|
||||||
mv "$2" "${2}.backup"
|
mv "$2" "${2}.backup"
|
||||||
ln -s "$1" "$2"
|
ln -s "$1" "$2"
|
||||||
else
|
else
|
||||||
selectedOption=$(dialog --menu "File already exists: $(basename "$1"), what would you like to do?" 10 60 0 1 "Skip" 2 "Skip all" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all" 3>&1 1>&2 2>&3 3>&1)
|
selectedOption=$(displayDialogBox --menu "File already exists: $(basename "$1"), what would you like to do?" 10 60 0 1 "Skip" 2 "Skip all" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all" 3>&1 1>&2 2>&3 3>&1)
|
||||||
if [ $? -eq 1 ]; then
|
if [ $? -eq 1 ]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
@ -44,16 +44,14 @@ linkFile() {
|
||||||
}
|
}
|
||||||
|
|
||||||
loopThroughFiles() {
|
loopThroughFiles() {
|
||||||
DOTFILES=$(pwd -P)
|
COCORICE=$(pwd -P)
|
||||||
cd $DOTFILES
|
DOTFILES=$COCORICE/dotfiles
|
||||||
|
DOTFILES_CONFIG="$DOTFILES/.config"
|
||||||
|
DOTFILES_LOCAL="$DOTFILES/.local"
|
||||||
|
DOTFILES_ICONS="$DOTFILES/.icons"
|
||||||
|
DOTFILES_SSH="$DOTFILES/.ssh"
|
||||||
|
|
||||||
DOTFILES_HOME=$DOTFILES/dotfiles
|
for srcFile in $(find -H "$DOTFILES" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*'); do
|
||||||
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
|
if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
@ -79,6 +77,33 @@ loopThroughFiles() {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
|
DOTFILES_OTHER=$DOTFILES/other
|
||||||
|
|
||||||
|
if [ -d "$DOTFILES_OTHER" ]; then
|
||||||
|
filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }')
|
||||||
|
displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n$filesOutput"
|
||||||
|
fi
|
||||||
|
|
||||||
|
for srcFile in $(find -H "$DOTFILES_OTHER"); do
|
||||||
|
if [[ -d "$srcFile" ]]; then
|
||||||
|
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }')
|
||||||
|
|
||||||
|
if [[ ! -d "$HOME/$var" ]]; then
|
||||||
|
sudo mkdir -p "$var"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -f "$srcFile" ]]; then
|
||||||
|
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }')
|
||||||
|
sudo linkFile "$srcFile" "$var"
|
||||||
|
fi
|
||||||
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
loopThroughFiles
|
runScript() {
|
||||||
|
source scripts/common.sh
|
||||||
|
loopThroughFiles
|
||||||
|
}
|
||||||
|
|
||||||
|
runScript
|
||||||
|
|
Loading…
Reference in New Issue