home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / boot / toolsdaemon / product-info < prev    next >
Encoding:
Text File  |  1995-10-22  |  1.1 KB  |  56 lines

  1. .name
  2. ToolsDaemon
  3. .author
  4. Nico Francois
  5. .address
  6. Corbielaan 13
  7. B-3060 Bertem
  8. Belgium
  9. .email
  10. Internet: nico@augfl.be
  11. FidoNet: 2:292/603.10
  12. AmigaNet: 39:120/102.10
  13. .version
  14. 2.1a
  15. .description
  16. Allows you to run programs simply by selecting a menu item from the menu
  17. strip of Workbench 2.0.  Shell and Workbench programs are supported,
  18. including arguments and tool types for both of these.  The menu items can
  19. be arranged in several menus, with sub-items and keyboard shortcuts.
  20. .distribution
  21. Freeware
  22. .reference
  23. FreshFish-Dec93:New/os20/wb/ToolsDaemon/
  24. 2.1
  25. FreshFish-Mar94:Old/Dec93/os20/wb/ToolsDaemon/
  26. 2.1
  27. FrozenFish-Apr94:BBS/Dec93/os20/wb/ToolsDaemon.lha
  28. 2.1
  29. .docs
  30. ToolsDaemon.doc
  31. .described-by
  32. Richard Fish
  33. .short
  34. Run programs by selecting WB menu item.
  35. .aminet-dir
  36. util/boot
  37. .execute
  38. set choice `RequestChoice "ToolsDaemon" "Please select an option" "View Doc" "Install Program" "Run Program" "Cancel"`
  39.  
  40. if $choice EQ "0"
  41.   quit 5
  42. endif
  43.  
  44. if $choice EQ "1"
  45.   MetaTool ToolsDaemon.doc TEXT
  46. endif
  47.  
  48. if $choice EQ "2"
  49.   Installer SCRIPT Install APPNAME ToolsDaemon MINUSER AVERAGE
  50. endif
  51.  
  52. if $choice EQ "3"
  53.   run ToolsDaemon
  54.   ToolsPrefs
  55. endif
  56.