2015-08-20 14:37:06 -06:00
|
|
|
#!/bin/bash
|
|
|
|
. ./lib
|
|
|
|
|
|
|
|
options=()
|
2016-04-08 18:26:54 -06:00
|
|
|
options+=("Basic" "")
|
|
|
|
options+=("Compression Tools" "")
|
|
|
|
options+=("Network Tools" "")
|
|
|
|
options+=("Webbrowser" "")
|
|
|
|
options+=("Recovery Tools" "")
|
2015-08-20 14:37:06 -06:00
|
|
|
|
2016-04-08 18:26:54 -06:00
|
|
|
defaultitem=""
|
|
|
|
sel=$(whiptail --backtitle "$apptitle" --title "Install Menu :" --menu "" --default-item "$defaultitem" --cancel-button "Back" 0 0 0 \
|
2015-08-20 14:37:06 -06:00
|
|
|
"${options[@]}" \
|
|
|
|
3>&1 1>&2 2>&3)
|
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-04-08 18:26:54 -06:00
|
|
|
sed -i "/^defaultitem=/c\defaultitem=\"$sel\"" $0
|
2015-08-20 14:37:06 -06:00
|
|
|
|
2016-04-08 18:26:54 -06:00
|
|
|
case $sel in
|
|
|
|
"Basic") script install/console/basic;;
|
|
|
|
"Compression Tools") script install/console/compression-tools;;
|
|
|
|
"Network Tools") script install/console/network-tools;;
|
|
|
|
"Webbrowser") script install/console/webbrowser;;
|
|
|
|
"Recovery Tools") script install/console/recovery-tools;;
|
|
|
|
esac
|
2015-08-20 14:37:06 -06:00
|
|
|
|
|
|
|
exit 0
|