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

42 lines
1 KiB
Bash

#!/bin/bash
. ./lib
options=()
options+=("chromium" "(GTK)" off)
options+=("pepper-flash" "" off)
options+=("firefox" "(GTK)" off)
options+=("firefox-i18n" "" off)
options+=("opera" "(GTK)" off)
options+=("opera-ffmpeg-codecs" "Non-free codecs" off)
options+=("seamonkey" "(GTK)" off)
options+=("seamonkey-i18n" "(AUR)" off)
options+=("midori" "(GTK)" off)
options+=("falkon" "(QT)" off)
options+=("vivaldi" "(GTK)" off)
options+=("vivaldi-ffmpeg-codecs" "Non-free codecs" off)
sel=$(dialog --backtitle "$apptitle" --title "Web Browser applications :" --cancel-button "Back" --checklist "Choose what you want" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
for itm in $sel; do
case $itm in
"firefox-i18n" | \
"seamonkey-i18n") pkg="$pkg";;
*) 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-";;
esac
done
exit 0