obosdi-pkg/install/desktop/lxqt/menu

23 lines
500 B
Text
Raw Normal View History

2015-08-31 20:09:24 -06:00
#!/bin/bash
. ./lib
options=()
options+=("LXQt" "")
options+=("Complements" "")
defaultitem=""
sel=$(whiptail --backtitle "$apptitle" --title "LXQt Install Menu :" --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
'LXQt') script install/desktop/xfce4/packages;;
'Complements') script install/desktop/xfce4/complements;;
esac
exit 0