diff --git a/usr/bin/setup-assistant b/usr/bin/setup-assistant index a8203e1..e9725ae 100755 --- a/usr/bin/setup-assistant +++ b/usr/bin/setup-assistant @@ -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