2016-03-13 02:58:30 -01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
dialog --colors --keep-tite --no-shadow --no-mouse \
|
2019-02-17 03:43:59 -01:00
|
|
|
--backtitle "\Zb\Z7Void Linux installation -- https://www.voidlinux.org\Zn" \
|
2016-03-13 02:58:30 -01:00
|
|
|
--cancel-label "Reboot" --aspect 20 \
|
|
|
|
--menu "Select an Action:" 10 50 2 \
|
|
|
|
"Install" "Run void-installer" \
|
|
|
|
"Shell" "Run dash" \
|
|
|
|
2>/tmp/netmenu.action
|
|
|
|
|
2017-08-28 03:10:38 +00:00
|
|
|
if [ ! $? ] ; then
|
2016-03-13 02:58:30 -01:00
|
|
|
reboot -f
|
|
|
|
fi
|
|
|
|
|
|
|
|
case $(cat /tmp/netmenu.action) in
|
|
|
|
"Install") /usr/bin/void-installer ; exec sh ;;
|
|
|
|
"Shell") exec sh ;;
|
|
|
|
esac
|