home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / sgi / 12770 < prev    next >
Encoding:
Internet Message Format  |  1992-08-21  |  2.0 KB

  1. Path: sparky!uunet!usc!sdd.hp.com!swrinde!mips!odin!fido!agomoda!williams
  2. From: williams@agomoda.asd.sgi.com (Eric Williams)
  3. Newsgroups: comp.sys.sgi
  4. Subject: Re: xwsh -vt100
  5. Message-ID: <osd99ug@fido.asd.sgi.com>
  6. Date: 22 Aug 92 02:17:55 GMT
  7. References: <32156@adm.brl.mil>
  8. Sender: news@fido.asd.sgi.com (Usenet News Admin)
  9. Organization: Silicon Graphics, Inc.  Mountain View, CA
  10. Lines: 46
  11.  
  12. In <32156@adm.brl.mil> MIKE@scripps.edu (Mike Whittaker) writes:
  13. > Number 1, I'd like to change the font in the windows, but I can't 
  14. > figure out the -xrm flag. 
  15.  
  16. The -fn flag will do what you want.  Try something like this:
  17.  
  18. xwsh -fn -schumacher-clean-bold-r-normal--14-140-75-75-c-80-iso8859-1
  19.  
  20.  
  21. If you want to use -xrm then try something like this:
  22.  
  23. xwsh -xrm '*font: -schumacher-clean-bold-r-normal--14-140-75-75-c-80-iso8859-1'
  24.  
  25. I think you need a full X font name.  I got this one using the font browser
  26. (by clicking the right mouse in an xwsh and selecting Font...).  The -xrm
  27. option allows you to pass X resources to xwsh.  See the man page for all
  28. the different resources you can set.  e.g. just to see how multiple resources
  29. could be set I tried:
  30.  
  31. xwsh -xrm '*font: -schumacher-clean-bold-r-normal--14-140-75-75-c-80-iso8859-1\
  32. *foreground: yellow\
  33. *background: blue'
  34.  
  35. It's easier to deal with resources if you use a .Xdefaults file.  See the
  36. 4Dgifts account for an example.  The xprop program is also very handy when
  37. you start playing around with resources.
  38.  
  39.  
  40.  
  41. > Number 2, I'd like the
  42. > backspace key to actually act like a backspace key. Currently only the
  43. > delete key works like a backspace key when logged into the remote Vax.
  44.  
  45. I suspect this is the "fault" of the VAX and is more a difference in
  46. default keyboard.  On SGI keyboards the backspace key (which sends a
  47. control H) is more convenient than the delete key (control-?), so try
  48. this:
  49.  
  50.     stty erase '^H'
  51.  
  52. to tell UNIX to use backspace instead of delete.  This could be put in
  53. your .login file on the VAX to make it the default.
  54.  
  55.  
  56. Good luck,
  57. Eric Williams
  58.