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).
|
||||
|
||||
## Table of contents
|
||||
- [Installation <a name="installation"></a>](#installation-)
|
||||
- [Usage <a name="usage"></a>](#usage-)
|
||||
- [Contributing <a name="contributing"></a>](#contributing-)
|
||||
- [License <a name="license"></a>](#license-)
|
||||
- [CocoRice](#cocorice)
|
||||
- [Table of contents](#table-of-contents)
|
||||
- [Installation <a name="installation"></a>](#installation-)
|
||||
- [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>
|
||||
|
||||
|
@ -17,10 +20,12 @@ Fork or clone this repo.
|
|||
Run
|
||||
|
||||
```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>
|
||||
PRs are welcome.
|
||||
|
|
|
@ -23,14 +23,21 @@ getGitconfigData() {
|
|||
}
|
||||
|
||||
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)
|
||||
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
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
getGitconfigData
|
||||
./scripts/linkFiles.sh
|
||||
# ./scripts/install.sh
|
||||
sh scripts/linkFiles.sh
|
||||
# sh scripts/install.sh
|
||||
dialog --title "CocoRice" --msgbox "All done! Enjoy..." 10 60
|
||||
|
||||
clear
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
makeInstall() {
|
||||
cd $1
|
||||
make install
|
||||
sudo make install
|
||||
cd ..
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,8 @@ linkFile() {
|
|||
ln -s "$1" "$2"
|
||||
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)
|
||||
if [ "$selectedOption" = "" ]; then
|
||||
if [ $? -eq 1 ]; then
|
||||
# if [ "$selectedOption" = "" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
@ -44,9 +45,6 @@ linkFile() {
|
|||
}
|
||||
|
||||
loopThroughFiles() {
|
||||
# lastFolder=$(pwd -P)
|
||||
|
||||
# DOTFILES=$(echo "$(pwd -P)" | awk '{ sub(/CocoRice.*/, "CocoRice"); print }')
|
||||
DOTFILES=$(pwd -P)
|
||||
cd $DOTFILES
|
||||
|
||||
|
@ -82,8 +80,6 @@ loopThroughFiles() {
|
|||
fi
|
||||
done
|
||||
done
|
||||
|
||||
# cd $lastFolder
|
||||
}
|
||||
|
||||
loopThroughFiles
|
Loading…
Reference in New Issue