Add spell check, thesorus, ... to office apps
This commit is contained in:
parent
06be13f1f6
commit
c6643e7ac9
2 changed files with 45 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
options=()
|
options=()
|
||||||
options+=("Office Suites" "")
|
options+=("Office Suites" "")
|
||||||
options+=("Office Spell Check and Thesaurus" "")
|
options+=("Office Language Aids" "")
|
||||||
options+=("Office Tools" "")
|
options+=("Office Tools" "")
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ sed -i "/^defaultitem=/c\defaultitem=\"$sel\"" $0
|
||||||
|
|
||||||
case $sel in
|
case $sel in
|
||||||
"Office Suites") script install/apps/office/office;;
|
"Office Suites") script install/apps/office/office;;
|
||||||
"Office Spell Check and Thesaurus") script install/apps/office/office-spell-thesaurus;;
|
"Office Language Aids") script install/apps/office/office-language-aids;;
|
||||||
"Office Tools") script install/apps/office/office-tools;;
|
"Office Tools") script install/apps/office/office-tools;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
43
install/apps/office/office-language-aids
Normal file
43
install/apps/office/office-language-aids
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
#!/bin/bash
|
||||||
|
. ./lib
|
||||||
|
|
||||||
|
options=()
|
||||||
|
options+=("hunspell" "Spell checking" off)
|
||||||
|
options+=("hyphen" "Hyphenation rules" off)
|
||||||
|
options+=("libmythes" "Required for mythes" off)
|
||||||
|
options+=("mythes" "Thesaurus" off)
|
||||||
|
options+=("languagetool" "Grammar checking" off)
|
||||||
|
options+=("libreoffice-extension-languagetool" "(AUR)" off)
|
||||||
|
options+=("libreoffice-extension-grammalecte-fr" "(AUR)" off)
|
||||||
|
|
||||||
|
|
||||||
|
sel=$(whiptail --backtitle "$apptitle" --title "Office Language aids :" --checklist "Choose what you want" --cancel-button "Back" 0 0 0 \
|
||||||
|
"${options[@]}" \
|
||||||
|
3>&1 1>&2 2>&3)
|
||||||
|
if [ ! "$?" = "0" ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
for itm in $sel; do
|
||||||
|
case $itm in
|
||||||
|
'"hunspell"' | \
|
||||||
|
'"hyphen"' | \
|
||||||
|
'"hunspell"' | \
|
||||||
|
'"mythes"') ;;
|
||||||
|
'"libreoffice-extension-languagetool"' | \
|
||||||
|
'"libreoffice-extension-grammalecte-fr"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
|
||||||
|
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
instpkg "$pkg" "$aurpkg"
|
||||||
|
|
||||||
|
for itm in $sel; do
|
||||||
|
case $itm in
|
||||||
|
'"hunspell"') choosepkg "hunspell-";;
|
||||||
|
'"hyphen"') choosepkg "hyphen-";;
|
||||||
|
'"mythes"') choosepkg "mythes-";;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
exit 0
|
Loading…
Reference in a new issue