added readmes to lost folders; fixed script
This commit is contained in:
parent
8e6d20e51e
commit
59f5d6d53a
|
@ -34,6 +34,8 @@ function main() {
|
||||||
"0" ) exit;;
|
"0" ) exit;;
|
||||||
* ) echo "Don't know how you got here but that's a bad sign...";;
|
* ) echo "Don't know how you got here but that's a bad sign...";;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
main;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,21 +60,18 @@ function get_live_iso_dependencies() {
|
||||||
echo "\t2) ubiquity-frontend-kde"
|
echo "\t2) ubiquity-frontend-kde"
|
||||||
echo "\t0) nethier..."
|
echo "\t0) nethier..."
|
||||||
read -p "--> : " ANSR
|
read -p "--> : " ANSR
|
||||||
while [[ $ANSR != "0" ]] && [[ $ANSR != "1" ]] && \
|
while [[ $ANSR != "0" ]] && [[ $ANSR != "1" ]] && [[ $ANSR != "2" ]]; do
|
||||||
[[ $ANSR != "2" ]]; do
|
|
||||||
read -p "--> : " ANSR
|
read -p "--> : " ANSR
|
||||||
done
|
done
|
||||||
case $ANSR in
|
case $ANSR in
|
||||||
"0" ) apt-get install --yes ubiquity-frontend-gtk --no-install-recommends --no-install-suggests
|
"0" ) apt-get install --yes ubiquity-frontend-gtk --no-install-recommends --no-install-suggests;;
|
||||||
break;;
|
"1" ) apt-get install --yes ubiquity-frontend-kde --no-install-recommends --no-install-suggests;;
|
||||||
"1" ) apt-get install --yes ubiquity-frontend-kde --no-install-recommends --no-install-suggests
|
"2" ) return;;
|
||||||
break;;
|
|
||||||
"2" ) break;;
|
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------Bellow Installs the main system------------------------#
|
# -------------------------------Bellow Installs the main system------------------------ #
|
||||||
|
|
||||||
######################## Main Desktop ########################
|
######################## Main Desktop ########################
|
||||||
function base() {
|
function base() {
|
||||||
|
@ -83,10 +82,9 @@ function base() {
|
||||||
# gparted gdebi sox udisks2 iftop htop tree hardinfo libsox-fmt-all onboard mc \
|
# gparted gdebi sox udisks2 iftop htop tree hardinfo libsox-fmt-all onboard mc \
|
||||||
# oracle-java8-installer -y
|
# oracle-java8-installer -y
|
||||||
|
|
||||||
apt-get autoremove --purge -y && apt-get autoclean
|
apt-get autoremove --purge -y && apt-get autoclean
|
||||||
|
|
||||||
#### Change bellow mate-core to other if
|
#### Change bellow mate-core to other if one wants different window managers
|
||||||
#### one wants different window managers
|
|
||||||
#### Above is mostly common base system stuff
|
#### Above is mostly common base system stuff
|
||||||
apt-get install mate-core spacefm-gtk3 --no-install-recommends ulauncher -y
|
apt-get install mate-core spacefm-gtk3 --no-install-recommends ulauncher -y
|
||||||
apt-get remove caja mate-terminal -y
|
apt-get remove caja mate-terminal -y
|
||||||
|
|
|
@ -34,6 +34,8 @@ function main() {
|
||||||
"0" ) exit;;
|
"0" ) exit;;
|
||||||
* ) echo "Don't know how you got here but that's a bad sign...";;
|
* ) echo "Don't know how you got here but that's a bad sign...";;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
main;
|
||||||
}
|
}
|
||||||
|
|
||||||
function do_all_run() {
|
function do_all_run() {
|
||||||
|
|
Loading…
Reference in New Issue