Update calculators

This commit is contained in:
MatMoul 2019-10-06 22:52:59 +02:00
parent fdc13d74a5
commit 3f20ef57f6

View file

@ -2,9 +2,8 @@
. ./lib . ./lib
options=() options=()
options+=("galculator" "" off)
options+=("qalculate-gtk" "" off) options+=("qalculate-gtk" "" off)
options+=("calcoo" "(AUR)" off)
options+=("x48" "(AUR)" off)
sel=$(whiptail --backtitle "$apptitle" --title "Office Tools applications :" --checklist "Choose what you want" --cancel-button "Back" 0 0 0 \ sel=$(whiptail --backtitle "$apptitle" --title "Office Tools applications :" --checklist "Choose what you want" --cancel-button "Back" 0 0 0 \
"${options[@]}" \ "${options[@]}" \
@ -15,8 +14,6 @@ fi
for itm in $sel; do for itm in $sel; do
case $itm in case $itm in
'"calcoo"' | \
'"x48"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
*) pkg="$pkg $(echo $itm | sed 's/"//g')";; *) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac esac
done done