1
0
Fork 0
mirror of synced 2024-11-22 01:55:36 -05:00

Add abiword

This commit is contained in:
Nico Jensch 2020-11-10 22:39:36 +01:00
parent efce35d84f
commit 3a4b626252

View file

@ -103,13 +103,15 @@ elif [ $selection = "10" ]; then
: office-selection
clear
echo "Which of these do you need?"
echo "Libreoffice is the recommended choice if you dont know any of these 🖨"
echo "LibreOffice is the recommended choice if you dont know any of these and need a full office suite. 🖨"
echo "If you prefer a simple word processor Abiword is also a good choice to begin with."
echo ""
echo "1) Libreoffice "
echo "1) LibreOffice "
echo "2) Onlyoffice"
echo "3) WPS Office"
echo "4) Free Office"
echo "5) Yozo Office"
echo "6) Abiword"
read office
if [ $office = "1" ]; then
sudo pacman -Syu libreoffice-fresh libmythes
@ -126,6 +128,9 @@ elif [ $selection = "10" ]; then
elif [ $office = "5" ]; then
sudo pacman -Syu yozo-office yozo-office-fonts
goto "start"
elif [ $office = "6" ]; then
sudo pacman -Syu abiword
goto "start"
else echo "Thats not a valid choice! ❌"
goto "office-selection"
fi