obosdi-pkg/install/apps/multimedia/videoplayer

29 lines
753 B
Text
Raw Normal View History

2015-12-06 16:41:56 -07:00
#!/bin/bash
. ./lib
options=()
2018-10-12 17:30:46 -06:00
options+=("vlc" "(QT) Video player" off)
options+=("smplayer" "(QT) Video player" off)
options+=("smtube" "(QT) Youtube Player" off)
options+=("mpv" "(GTK) Recommended for smplayer" off)
options+=("gnome-mpv" "(GTK) Video player" off)
2018-06-04 16:37:37 -06:00
#options+=("streamstudio-bin" "(AUR) Stream video Player" off)
2015-12-06 16:41:56 -07:00
sel=$(whiptail --backtitle "$apptitle" --title "Video Player 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
2016-02-24 16:41:29 -07:00
'"streamstudio-bin"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
2015-12-06 16:41:56 -07:00
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac
done
instpkg "$pkg" "$aurpkg"
exit 0