home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 536.lha / AmiDock_v1.3 / SetupExample < prev    next >
Text File  |  1991-08-09  |  913b  |  33 lines

  1. .K ""
  2. echo "This script will set up a sample AmiDock environment using the"
  3. echo "icons supplied in the distribution.  You will probably want to"
  4. echo "read the directions and do a custom setup on your system.  This"
  5. echo "example is just so you can get a feel for what AmiDock looks like."
  6. echo ""
  7.  
  8. if not EXISTS libs:arp.library
  9.     echo "No existing library, installing libs:arp.library..."
  10.     copy arp.library libs:arp.library
  11. else
  12.     echo "Examine the version numbers of each library."
  13.     echo ""
  14.     version libs:arp.library
  15.     version /AmiDock/arp.library
  16.     echo ""
  17.     ask "Do you wish to overwrite libs:arp.library?"
  18.     if WARN
  19.         echo "Updating libs:arp.library..."
  20.         copy arp.library libs:arp.library
  21.     endif
  22. endif
  23.  
  24. ask "Are you using an interlaced screen?"
  25. if WARN
  26.     assign Dock: dock/interlace/maindock
  27. else
  28.     assign Dock: dock/non-interlace/maindock
  29. endif
  30.  
  31. echo "All Done.  Click close gadget to get rid of window."
  32. endcli
  33.