1
0
Fork 0
mirror of synced 2024-06-26 09:51:10 -04:00

Add no office selection

This commit is contained in:
Nico Jensch 2020-11-11 16:34:11 +01:00
parent bbf4257570
commit 6f28defc54

View file

@ -94,6 +94,7 @@ function upgrade2ultimate
echo "5) Yozo Office" echo "5) Yozo Office"
echo "6) Calligra Office" echo "6) Calligra Office"
echo "7) Abiword" echo "7) Abiword"
echo "8) Who needs office anyway?"
read office read office
if [ $office = "1" ]; then if [ $office = "1" ]; then
echo "libreoffice-fresh echo "libreoffice-fresh
@ -113,6 +114,8 @@ function upgrade2ultimate
echo "calligra" >> /tmp/setup-assistant/pkgs.txt echo "calligra" >> /tmp/setup-assistant/pkgs.txt
elif [ $office = "7" ]; then elif [ $office = "7" ]; then
echo "abiword" >> /tmp/setup-assistant/pkgs.txt echo "abiword" >> /tmp/setup-assistant/pkgs.txt
elif [ $office = "7" ]; then
echo "nooffice" >/dev/null 2>&1 &
else echo "Thats not a valid choice! ❌" else echo "Thats not a valid choice! ❌"
goto "office-selection" goto "office-selection"
fi fi