home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / emulate / a64v2d1.lha / thea64package / MakeA64WB < prev    next >
Text File  |  1991-10-02  |  2KB  |  63 lines

  1.  
  2. echo "WARNING: This script file will make modifications to your current"
  3. echo "         SYS: disk by deleting and adding files!  You should only"
  4. echo "         execute this script file after re-booting your Amiga with"
  5. echo "         an unmodified WorkBench that is to be used exclusively"
  6. echo "         with The A64 Package!  For more information on this script"
  7. echo "         file see the GETTING STARTED section of the documentation."
  8. echo ""
  9.  
  10. ask "Do you wish to continue? (Y/N)"
  11. if not warn
  12.     skip END
  13. endif
  14.  
  15. echo ""
  16. echo "Renaming disk..."
  17. relabel sys: "A64WB"
  18.  
  19. echo "Deleting fonts..."
  20. makedir ram:fonts
  21. makedir ram:fonts/diamond
  22. copy fonts:diamond/12 ram:fonts/diamond quiet
  23. copy fonts:diamond.font ram:fonts quiet
  24. cd ram:
  25. assign fonts: ram:fonts
  26. delete sys:fonts all quiet
  27. makedir sys:fonts
  28. assign fonts: sys:fonts
  29. copy ram:fonts fonts: all quiet
  30. delete ram:fonts all quiet
  31.  
  32. echo "Installing A64 font..."
  33. copy A64:TheA64Package/fonts fonts: all quiet
  34.  
  35. echo "Deleting utilities..."
  36. cd sys:utilities
  37. makedir ram:utilities
  38. copy more#? ram:utilities quiet
  39. copy NotePad#? ram:utilities quiet
  40. delete #? quiet
  41. copy ram:utilities sys:utilities quiet
  42. delete ram:utilities all quiet
  43.  
  44. echo "Copying A64Utilities..."
  45. if not exists sys:A64Utilities
  46.     makedir sys:A64Utilities
  47. endif
  48. copy "A64 Doc & Utils:A64Utilities.info" sys: quiet
  49. copy "A64 Doc & Utils:A64Utilities" sys:A64Utilities all quiet
  50.  
  51. echo ""
  52. echo "To use The A64 Package's Shell based utilities you should either"
  53. echo "add the following line to your Startup-Sequence or type it when"
  54. echo "you first open a Shell window."
  55. echo ""
  56. echo "    path sys:A64Utilities add"
  57. echo ""
  58. wait 30
  59.  
  60. lab end
  61. cd sys:
  62.