obosdi-pkg/install/apps/multimedia/menu

30 lines
789 B
Text
Raw Normal View History

2015-12-06 16:41:56 -07:00
#!/bin/bash
. ./lib
options=()
options+=("GStreamer" "")
options+=("Audio Player" "")
options+=("Video Player" "")
options+=("Video Tools" "")
2016-10-22 12:23:18 -06:00
options+=("Burner Tools" "")
2015-12-06 16:41:56 -07:00
defaultitem=""
sel=$(whiptail --backtitle "$apptitle" --title "Multimedia Apps :" --menu "" --default-item "$defaultitem" --cancel-button "Back" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
sed -i "/^defaultitem=/c\defaultitem=\"$sel\"" $0
case $sel in
"GStreamer") script install/apps/multimedia/gstreamer;;
"Audio Player") script install/apps/multimedia/audioplayer;;
"Video Player") script install/apps/multimedia/videoplayer;;
"Video Tools") script install/apps/multimedia/videotools;;
2016-10-22 12:23:18 -06:00
"Burner Tools") script install/apps/multimedia/burnertools;;
2015-12-06 16:41:56 -07:00
esac
exit 0