home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / dos / extra / docs / maillist / text / archive.95 / text3831.txt < prev    next >
Encoding:
Internet Message Format  |  1996-03-31  |  2.4 KB

  1. Received: from ppsw3.cam.ac.uk (mauve.csi.cam.ac.uk [131.111.8.38]) by nacm.com (8.6.10/8.6.9) with ESMTP id EAA03686 for <executor@nacm.com>; Mon, 14 Aug 1995 04:45:13 -0700
  2. Received: from mole.bio.cam.ac.uk by mauve.csi.cam.ac.uk 
  3.           with SMTP-CAM (XTPP8.1) as ppsw.cam.ac.uk;
  4.           Mon, 14 Aug 1995 12:43:16 +0100
  5. Received:  from localhost 
  6.           by mole.bio.cam.ac.uk (931110.SGI/MDTG-V1.3@mole.bio.cam.ac.uk)    id AA23582;
  7.           Mon, 14 Aug 95 12:45:04 +0100
  8. Message-Id: <9508141145.AA23582@mole.bio.cam.ac.uk>
  9. To: Peer Griebel <griebel@uni-paderborn.de>
  10. Cc: executor@nacm.com
  11. Subject: Re: E/L: Larger system font / window decoration 
  12. In-Reply-To: Your message of "Mon, 14 Aug 1995 11:08:02 +0200."             <199508140908.LAA26401@univac.uni-paderborn.de> 
  13. Date: Mon, 14 Aug 1995 12:45:04 +0100
  14. From: Tim Cutts (Zoology) <tjrc1@mole.bio.cam.ac.uk>
  15. Sender: owner-paper@nacm.com
  16. Precedence: bulk
  17.  
  18. In your message (Mon, 14 Aug 1995 11:08:02 +0200 (MET DST)), you wrote:
  19. >Hi,
  20. >
  21. >I have to questions for executor/linux:
  22. >
  23. >- How can I change the system font? The current font is too small for
  24. >  a 1024x768 display. (I'm not a Mac guru at all. I'm trying to install
  25. >  executor for my wife to use a cad program. But she does not know
  26. >  how to change the font either).
  27.  
  28. I can't answer this one, but:
  29.  
  30. >- How can I change the window decoration for E/L? I would like to drop the
  31. >  borders drawn by the window manager. I think executor does not announce
  32. >  itself by the window manager. (At least fvwm does not list executor in the
  33. >  program list.) therefore I can not tell fvwm to not draw any border around
  34. >  executor.
  35.  
  36. I have set up a script which runs executor full screen without a
  37. window manager.  If executor is likely to be the only thing your wife
  38. uses under X, you could create a script called 'executorx' which is
  39. something like:
  40.  
  41. #!/bin/sh
  42. xinit $HOME/.executorrc
  43.  
  44. and then your wife's home directory has a file .executorrc which on my
  45. machine is:
  46.  
  47. #!/bin/sh
  48. xrdb -load ~/.Xdefaults
  49. exec executor -privatecmap -nosplash -size 1280x960 -geometry +0+0
  50.  
  51. Where you set -size to the size your X server is going to be running
  52. at (1024x768 in your case).  This works very well, since you can use a
  53. private colour map and not notice the horrible colour flashes.  This
  54. makes executor much faster, especially for graphics work.
  55.  
  56. Tim.
  57.  
  58.  
  59.