obosdi-pkg/install/desktop/lxqt/menu

23 lines
496 B
Text
Raw Permalink Normal View History

2015-08-31 20:09:24 -06:00
#!/bin/bash
. ./lib
options=()
options+=("LXQt" "")
options+=("Complements" "")
defaultitem=""
2022-11-10 14:27:23 -07:00
sel=$(dialog --backtitle "$apptitle" --title "LXQt Install Menu :" --default-item "$defaultitem" --cancel-button "Back" --menu "" 0 0 0 \
2015-08-31 20:09:24 -06:00
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
sed -i "/^defaultitem=/c\defaultitem=\"$sel\"" $0
case $sel in
2015-08-31 20:11:50 -06:00
'LXQt') script install/desktop/lxqt/packages;;
'Complements') script install/desktop/lxqt/complements;;
2015-08-31 20:09:24 -06:00
esac
exit 0