home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Guests / Fairlawn / .login < prev    next >
Text File  |  2017-09-21  |  575b  |  27 lines

  1. # @(#)local.login 1.3     93/09/15 SMI
  2. stty -istrip 
  3. # setenv TERM `tset -Q -`
  4.  
  5. #
  6. # if possible, start the windows system.  Give user a chance to bail out
  7. #
  8. if ( `tty` == "/dev/console" ) then
  9.  
  10.     if ( $TERM == "sun" || $TERM == "AT386" ) then
  11.  
  12.         if ( ${?OPENWINHOME} == 0 ) then     
  13.             setenv OPENWINHOME /usr/openwin
  14.         endif                
  15.  
  16.         echo ""
  17.         echo -n "Starting OpenWindows in 5 seconds (type Control-C to interrupt)"
  18.         sleep 5
  19.         echo ""
  20.         $OPENWINHOME/bin/openwin
  21.         clear        # get rid of annoying cursor rectangle
  22.         logout        # logout after leaving windows system
  23.  
  24.     endif
  25.  
  26. endif
  27.