#!/bin/sh Xdialog --title "VICE" \ --menu "VICE is an emulator for old 8-bit Commodore\n\ computers. It emulates the C64, the C128,\n\ the VIC20, almost all PET models, the PLUS4\n\ and the CBM-II (aka C610).\n\\n\ Choose the emulator you like to run:" 22 51 6 \ "x64" "- C64 emulator" \ "x128" "- C128 emulator" \ "xvic" "- VIC20 emulator" \ "xpet" "- PET emulator" \ "xplus4" "- PLUS4 emulator" \ "xcbm2" "- CBM-II emulator" 2> /tmp/menu.tmp.$$ retval=$? choice=`cat /tmp/menu.tmp.$$` rm -f /tmp/menu.tmp.$$ case $retval in 0) $choice;; 1) ;; 255) ;; esac