Add abiword
This commit is contained in:
parent
efce35d84f
commit
3a4b626252
1 changed files with 7 additions and 2 deletions
|
@ -103,13 +103,15 @@ elif [ $selection = "10" ]; then
|
||||||
: office-selection
|
: office-selection
|
||||||
clear
|
clear
|
||||||
echo "Which of these do you need?"
|
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 ""
|
||||||
echo "1) Libreoffice "
|
echo "1) LibreOffice "
|
||||||
echo "2) Onlyoffice"
|
echo "2) Onlyoffice"
|
||||||
echo "3) WPS Office"
|
echo "3) WPS Office"
|
||||||
echo "4) Free Office"
|
echo "4) Free Office"
|
||||||
echo "5) Yozo Office"
|
echo "5) Yozo Office"
|
||||||
|
echo "6) Abiword"
|
||||||
read office
|
read office
|
||||||
if [ $office = "1" ]; then
|
if [ $office = "1" ]; then
|
||||||
sudo pacman -Syu libreoffice-fresh libmythes
|
sudo pacman -Syu libreoffice-fresh libmythes
|
||||||
|
@ -126,6 +128,9 @@ elif [ $selection = "10" ]; then
|
||||||
elif [ $office = "5" ]; then
|
elif [ $office = "5" ]; then
|
||||||
sudo pacman -Syu yozo-office yozo-office-fonts
|
sudo pacman -Syu yozo-office yozo-office-fonts
|
||||||
goto "start"
|
goto "start"
|
||||||
|
elif [ $office = "6" ]; then
|
||||||
|
sudo pacman -Syu abiword
|
||||||
|
goto "start"
|
||||||
else echo "Thats not a valid choice! ❌"
|
else echo "Thats not a valid choice! ❌"
|
||||||
goto "office-selection"
|
goto "office-selection"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue