Update scripts (sudo per command and more changes)
This commit is contained in:
parent
43abd30303
commit
5bf4a0ce67
17
README.md
17
README.md
|
@ -3,10 +3,13 @@
|
||||||
[Fork][1] this repository and you will be able to backup all your dotfiles (and easily install them on another machine).
|
[Fork][1] this repository and you will be able to backup all your dotfiles (and easily install them on another machine).
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
- [Installation <a name="installation"></a>](#installation-)
|
- [CocoRice](#cocorice)
|
||||||
- [Usage <a name="usage"></a>](#usage-)
|
- [Table of contents](#table-of-contents)
|
||||||
- [Contributing <a name="contributing"></a>](#contributing-)
|
- [Installation <a name="installation"></a>](#installation-)
|
||||||
- [License <a name="license"></a>](#license-)
|
- [Usage <a name="usage"></a>](#usage-)
|
||||||
|
- [Dependencies <a name="dependencies"></a>](#dependencies-)
|
||||||
|
- [Contributing <a name="contributing"></a>](#contributing-)
|
||||||
|
- [License <a name="license"></a>](#license-)
|
||||||
|
|
||||||
## Installation <a name="installation"></a>
|
## Installation <a name="installation"></a>
|
||||||
|
|
||||||
|
@ -17,10 +20,12 @@ Fork or clone this repo.
|
||||||
Run
|
Run
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo ./scripts/bootstrap.sh
|
sh scripts/bootstrap.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that because this script will create symbolic links to the dotfiles in this repository, you must not delete it.
|
## Dependencies <a name="dependencies"></a>
|
||||||
|
|
||||||
|
You must install dialog.
|
||||||
|
|
||||||
## Contributing <a name="contributing"></a>
|
## Contributing <a name="contributing"></a>
|
||||||
PRs are welcome.
|
PRs are welcome.
|
||||||
|
|
|
@ -23,14 +23,21 @@ getGitconfigData() {
|
||||||
}
|
}
|
||||||
|
|
||||||
checkForDependencies() {
|
checkForDependencies() {
|
||||||
unameOutput=$(uname -a | grep "arch")
|
|
||||||
if [ -f "/etc/arch-release" ] || [ $unameOutput -eq 0 ]; then
|
|
||||||
pacman --noconfirm --needed -Sy dialog > /dev/null 2>&1 || echo "You must run this script as root and have an active internet connection." >&2 || exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
commOuput=$(command -v dialog &> /dev/null)
|
commOuput=$(command -v dialog &> /dev/null)
|
||||||
if [ $? -eq 1 ]; then
|
if [ $? -eq 1 ]; then
|
||||||
echo "You must install dialog." >&2 || exit 1
|
unameOutput=$(uname -a | grep "arch")
|
||||||
|
if [ -f "/etc/arch-release" ] || [ $unameOutput -eq 0 ]; then
|
||||||
|
sudo pacman --noconfirm --needed -Sy dialog > /dev/null 2>&1
|
||||||
|
if [ $? -eq 1 ]; then
|
||||||
|
echo "You must run this script as root and have an active internet connection." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "You must install dialog." >&2
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,8 +50,8 @@ 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
|
sh scripts/linkFiles.sh
|
||||||
# ./scripts/install.sh
|
# sh scripts/install.sh
|
||||||
dialog --title "CocoRice" --msgbox "All done! Enjoy..." 10 60
|
dialog --title "CocoRice" --msgbox "All done! Enjoy..." 10 60
|
||||||
|
|
||||||
clear
|
clear
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
makeInstall() {
|
makeInstall() {
|
||||||
cd $1
|
cd $1
|
||||||
make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,8 @@ linkFile() {
|
||||||
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=$(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)
|
||||||
if [ "$selectedOption" = "" ]; then
|
if [ $? -eq 1 ]; then
|
||||||
|
# if [ "$selectedOption" = "" ]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -44,9 +45,6 @@ linkFile() {
|
||||||
}
|
}
|
||||||
|
|
||||||
loopThroughFiles() {
|
loopThroughFiles() {
|
||||||
# lastFolder=$(pwd -P)
|
|
||||||
|
|
||||||
# DOTFILES=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }')
|
|
||||||
DOTFILES=$(pwd -P)
|
DOTFILES=$(pwd -P)
|
||||||
cd $DOTFILES
|
cd $DOTFILES
|
||||||
|
|
||||||
|
@ -82,8 +80,6 @@ loopThroughFiles() {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
# cd $lastFolder
|
|
||||||
}
|
}
|
||||||
|
|
||||||
loopThroughFiles
|
loopThroughFiles
|
Loading…
Reference in New Issue