obosdi-pkg/install/apps/office/menu
2022-11-10 22:27:23 +01:00

25 lines
621 B
Bash

#!/bin/bash
. ./lib
options=()
options+=("Office Suites" "")
options+=("Office Language Aids" "")
options+=("Office Tools" "")
defaultitem=""
sel=$(dialog --backtitle "$apptitle" --title "Office Apps :" --default-item "$defaultitem" --cancel-button "Back" --menu "" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
sed -i "/^defaultitem=/c\defaultitem=\"$sel\"" $0
case $sel in
"Office Suites") script install/apps/office/office;;
"Office Language Aids") script install/apps/office/office-language-aids;;
"Office Tools") script install/apps/office/office-tools;;
esac
exit 0