obosdi-pkg/install/apps/internet/webbrowser

46 lines
1.1 KiB
Text
Raw Normal View History

2015-12-06 16:41:56 -07:00
#!/bin/bash
. ./lib
options=()
options+=("chromium" "" off)
options+=("pepper-flash" "(AUR) Recommended" off)
options+=("firefox" "" off)
options+=("firefox-i18n" "" off)
2015-12-06 16:41:56 -07:00
options+=("flashplugin" "" off)
options+=("freshplayerplugin" "(AUR) Recommended" off)
options+=("freshplayerplugin-git" "(AUR)" off)
options+=("opera" "" off)
2016-01-11 12:22:39 -07:00
options+=("seamonkey" "" off)
options+=("seamonkey-i18n" "(AUR)" off)
options+=("midori" "" off)
2018-06-04 16:35:39 -06:00
options+=("falkon" "" off)
2015-12-06 16:41:56 -07:00
sel=$(whiptail --backtitle "$apptitle" --title "Web Browser applications :" --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
'"pepper-flash"' | \
2015-12-06 16:41:56 -07:00
'"freshplayerplugin-git"' | \
'"freshplayerplugin"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
'"firefox-i18n"' | \
'"seamonkey-i18n"') pkg="$pkg";;
2015-12-06 16:41:56 -07:00
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac
done
instpkg "$pkg" "$aurpkg"
for itm in $sel; do
case $itm in
'"firefox-i18n"') choosepkg "firefox-i18n-";;
'"seamonkey-i18n"') chooseaurpkg "seamonkey-i18n-";;
2015-12-06 16:41:56 -07:00
esac
done
exit 0