#!/bin/bash
# Load functions
. /usr/bin/gl-functions

get_gui_dialog

$DIALOG	--title "INFORMATIONS" \
        --icon /usr/share/pixmaps/gparted-live/help.xpm \
        --radiolist "" 13 30 0 \
        "List of packages"  "" ON \
        "Windows Informations"  "" off 2>/tmp/checklist.tmp.$$

retval=$?
choice=`cat /tmp/checklist.tmp.$$`
rm -f /tmp/checklist.tmp.$$

case $choice in
	"Windows Informations")
		gl-win
		;;
	"List of packages")
		gl-packages
		;;	
esac
