Update install.sh
This commit is contained in:
parent
35c2bb0023
commit
5f23b2f76e
15
install.sh
15
install.sh
|
@ -488,8 +488,11 @@ installOtherPackages() {
|
||||||
}
|
}
|
||||||
|
|
||||||
finishInstallation() {
|
finishInstallation() {
|
||||||
cp calsais /mnt/usr/bin/calsais
|
if [ "$cdotfisInstall" = true ]; then
|
||||||
echo "sh /usr/bin/calsais && logout" >> /mnt/home/slococo/.bashrc
|
[ -z "$username" ] && tryLoadVar "username"
|
||||||
|
cp calsais /mnt/usr/bin/calsais
|
||||||
|
echo "sh /usr/bin/calsais && logout" >> "/mnt/home/$username/.bashrc"
|
||||||
|
fi
|
||||||
rm -f /mnt/cocoScript
|
rm -f /mnt/cocoScript
|
||||||
umount -R /mnt
|
umount -R /mnt
|
||||||
dialog --yesno "\nFinally, the PC needs to restart, would you like to restart now?" 8 47
|
dialog --yesno "\nFinally, the PC needs to restart, would you like to restart now?" 8 47
|
||||||
|
@ -505,7 +508,7 @@ getDotfiles() {
|
||||||
cd "$HOME/Documents" || printAndExit "Couldn't cd into $HOME/Documents"
|
cd "$HOME/Documents" || printAndExit "Couldn't cd into $HOME/Documents"
|
||||||
git clone --recursive "https://codeberg.org/slococo/cdotfis.git" 2>&1 | debug
|
git clone --recursive "https://codeberg.org/slococo/cdotfis.git" 2>&1 | debug
|
||||||
cd cdotfis || printAndExit "Couldn't cd into ./cdotfis"
|
cd cdotfis || printAndExit "Couldn't cd into ./cdotfis"
|
||||||
sh sadedot/scripts/bootstrap.sh
|
sh sadedot/scripts/bootstrap.sh -p
|
||||||
cd "$lastFolder" || printAndExit "Couldn't cd into $lastFolder"
|
cd "$lastFolder" || printAndExit "Couldn't cd into $lastFolder"
|
||||||
|
|
||||||
sudo rm -f ~/.bashrc /usr/bin/calsais
|
sudo rm -f ~/.bashrc /usr/bin/calsais
|
||||||
|
@ -574,6 +577,7 @@ usage: ${0##*/} [command]
|
||||||
-d Print log to STDOUT and calsais.log file.
|
-d Print log to STDOUT and calsais.log file.
|
||||||
-f Print log to calsais.log file.
|
-f Print log to calsais.log file.
|
||||||
-s Print log to STDOUT.
|
-s Print log to STDOUT.
|
||||||
|
-p Install cdotfis (personal dotfiles).
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -596,13 +600,14 @@ END
|
||||||
}
|
}
|
||||||
|
|
||||||
runScript() {
|
runScript() {
|
||||||
debugFlag=false; debugFlagToFile=false; debugFlagToStdout=false
|
debugFlag=false; debugFlagToFile=false; debugFlagToStdout=false; cdotfisInstall=false
|
||||||
while getopts ':hdfs' flag; do
|
while getopts ':hdfsp' flag; do
|
||||||
case $flag in
|
case $flag in
|
||||||
h) usage && exit 0 ;;
|
h) usage && exit 0 ;;
|
||||||
d) debugFlag=true ;;
|
d) debugFlag=true ;;
|
||||||
f) debugFlagToFile=true ;;
|
f) debugFlagToFile=true ;;
|
||||||
s) debugFlagToStdout=true ;;
|
s) debugFlagToStdout=true ;;
|
||||||
|
p) cdotfisInstall=true ;;
|
||||||
?) printf '%s: invalid option -''%s'\\n "${0##*/}" "$OPTARG" && exit 1 ;;
|
?) printf '%s: invalid option -''%s'\\n "${0##*/}" "$OPTARG" && exit 1 ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue