netmenu.sh 489 B

123456789101112131415161718
  1. #!/bin/sh
  2. dialog --colors --keep-tite --no-shadow --no-mouse \
  3. --backtitle "\Zb\Z7Void Linux installation -- https://www.voidlinux.org\Zn" \
  4. --cancel-label "Reboot" --aspect 20 \
  5. --menu "Select an Action:" 10 50 2 \
  6. "Install" "Run void-installer" \
  7. "Shell" "Run dash" \
  8. 2>/tmp/netmenu.action
  9. if [ ! $? ] ; then
  10. reboot -f
  11. fi
  12. case $(cat /tmp/netmenu.action) in
  13. "Install") /usr/bin/void-installer ; exec sh ;;
  14. "Shell") exec sh ;;
  15. esac