h_sample_host.rc
author claus
Sat, 11 Dec 1993 02:53:38 +0100
changeset 0 0cb137a77319
child 5 420e4af41733
permissions -rw-r--r--
Initial revision

"*
 * $Header$
 * startup configuration for host specific stuff -
 *"

"*
 * printer type configuration 
 * - uncomment the one you have
 *"
Stdout showCr:'configuring printer ...'!

"*
 * printer command configuration 
 * - uncomment the one you have
 * you can also change the stuff below to adapt to the current
 * host - see display.rc for an example.
 *"
" " 
PostscriptPrinterStream autoload.
Smalltalk at:#Printer put:PostscriptPrinterStream
" "
!

"
HPLjetIIPrinterStream autoload.
Smalltalk at:#Printer put:HPLjetIIPrinterStream
" 
!

"
EpsonFX1PrinterStream autoload.
Smalltalk at:#Printer put:EpsonFX1PrinterStream
"
!

"*
 * this one for bsd-type real unixes
 *"

"
Printer printCommand:'lpr' 
"             
" "
Printer printCommand:'lpr -Pdali'  
" "           

!

"*
 * this one for sys5-type machines
 *"
"
Printer printCommand:'lp' 
"
!

"*
 * or even more fancy:
 *"
" 
Printer printCommand:'lp -d letterquality' 
" 
!

"*
 * and this is an example for remote printing
 *"
"
Printer printCommand:'rcmd ama lp -d letterquality'  
"
"
Printer printCommand:'rsh avalon ''cat >/dev/lp'''  
"
!

Printer leftMargin:4!
!