Mon Mar 13, 2017 1:29 am
yad --title="$window_title" --width=480 --button=$"Simple installation":0 \
yad --title="$window_title" --width=480 \
Mon Mar 13, 2017 2:17 am
Mon Mar 13, 2017 2:19 am
#!/bin/bash
yad --title="$window_title" --width=480 \
--button=$"Begin installation":1 --button=$"Exit":2 --center \
--text=$"$live_session_warning
This utility will install a running live-CD or live-USB to your hard drive.
This is free software that comes with no warranty or guarantee of any
type, including but not limited to express, implied, merchantability or
fitness of purpose.
Copyright 2011-2015 [email protected],
based on refractainstaller-8.0.3 by Dean Linkous. \n Version: $version \n\n\
${custom_text} \n
"
mode="$?"
case $mode in
0) install="simple" ;;
1) install="expert" ;;
2) exit 0 ;;
esac
echo -e "\n\t$install\n"