obosdi-pkg/install/apps/internet/webbrowser
2016-01-11 20:22:39 +01:00

45 lines
1.2 KiB
Bash

#!/bin/bash
. ./lib
options=()
options+=("chromium" "" off)
options+=("chromium-pepper-flash" "(AUR) Recommended" off)
options+=("chromium-pepper-flash-standalone" "(AUR)" off)
options+=("firefox" "" off)
options+=("flashplugin" "" off)
options+=("freshplayerplugin-git" "(AUR) Recommended" off)
options+=("freshplayerplugin" "(AUR)" off)
options+=("opera" "" off)
options+=("seamonkey" "" off)
options+=("midori" "" off)
options+=("midori-gtk2" "" off)
options+=("qupzilla" "" off)
options+=("qupzilla-qt4" "" off)
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
'"chromium-pepper-flash"' | \
'"chromium-pepper-flash-standalone"' | \
'"freshplayerplugin-git"' | \
'"freshplayerplugin"') 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
'"firefox"') choosepkg "firefox-i18n-";;
'"seamonkey"') chooseaurpkg "seamonkey-i18n-";;
esac
done
exit 0