home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / os / vms / 12862 < prev    next >
Encoding:
Internet Message Format  |  1992-07-28  |  1.6 KB

  1. Path: sparky!uunet!cs.utexas.edu!sdd.hp.com!caen!kuhub.cc.ukans.edu!parsifal.umkc.edu!cstp.umkc.edu!mckeever
  2. Newsgroups: comp.os.vms
  3. Subject: Re: DECwindow stuff
  4. Message-ID: <1992Jul28.150902.1@cstp.umkc.edu>
  5. From: mckeever@cstp.umkc.edu
  6. Date: Tue, 28 Jul 1992 21:09:02 GMT
  7. Sender: root@parsifal.umkc.edu (Parsifal Administration)
  8. References: <15JUL199211533057@robot.nuceng.ufl.edu>
  9. Organization: UM - Kansas City, Computer Science
  10. Lines: 28
  11.  
  12. In article <15JUL199211533057@robot.nuceng.ufl.edu>, sysop                            writes:
  13. >     Recently someone posted a comment on how to change the login window
  14. > background.  I would like to know what kind of file the DECW$LOGIN_BACKGROUND
  15. > (?) logical must point to; is there a way to use screens used on Unix
  16. > boxes?
  17.  
  18. DECW$LOGIN_BACKGROUND should point to command procedure.  You'll need some
  19. sort of Xwindows display program.  I use XV that I got via anonymous FTP
  20. from TGV.COM.  It displays X11 bitmaps, GIF, JPEG, Postscript, Sun Rastar
  21. files,...  Check the docs for a full list.
  22.  
  23. As for "use screens used on UNIX boxes", I guess it depends on if you can
  24. find the files the UNIX boxes use in a format that XV understands.  Anyway,
  25. here's a copy of my DECW$LOGIN_BACKGROUND file:
  26.  
  27.     $ define sys$output sys$manager:login-background.log
  28.     $ set verify
  29.     $ set noon
  30.     $ show process/all
  31.     $ @sys_setup:setup_x
  32.     $ show display
  33.     $ set display/create/trans=local/node='f$getsyi("NODENAME")
  34.     $ show display
  35.     $ xv -root -max -quit PUBLIC:[IMAGES]CSTP-LOGO.GIF
  36.     $ write sys$output $status
  37.     $ purge/keep=5 sys$manager:login-background.log
  38.  
  39. --Brian
  40.