home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / linux / extra / docs / maillist / text / archive.95 / text1550.txt < prev    next >
Encoding:
Text File  |  1996-04-02  |  1.4 KB  |  42 lines

  1. In your message (Mon, 14 Aug 1995 11:08:02 +0200 (MET DST)), you wrote:
  2. >Hi,
  3. >
  4. >I have to questions for executor/linux:
  5. >
  6. >- How can I change the system font? The current font is too small for
  7. >  a 1024x768 display. (I'm not a Mac guru at all. I'm trying to install
  8. >  executor for my wife to use a cad program. But she does not know
  9. >  how to change the font either).
  10.  
  11. I can't answer this one, but:
  12.  
  13. >- How can I change the window decoration for E/L? I would like to drop the
  14. >  borders drawn by the window manager. I think executor does not announce
  15. >  itself by the window manager. (At least fvwm does not list executor in the
  16. >  program list.) therefore I can not tell fvwm to not draw any border around
  17. >  executor.
  18.  
  19. I have set up a script which runs executor full screen without a
  20. window manager.  If executor is likely to be the only thing your wife
  21. uses under X, you could create a script called 'executorx' which is
  22. something like:
  23.  
  24. #!/bin/sh
  25. xinit $HOME/.executorrc
  26.  
  27. and then your wife's home directory has a file .executorrc which on my
  28. machine is:
  29.  
  30. #!/bin/sh
  31. xrdb -load ~/.Xdefaults
  32. exec executor -privatecmap -nosplash -size 1280x960 -geometry +0+0
  33.  
  34. Where you set -size to the size your X server is going to be running
  35. at (1024x768 in your case).  This works very well, since you can use a
  36. private colour map and not notice the horrible colour flashes.  This
  37. makes executor much faster, especially for graphics work.
  38.  
  39. Tim.
  40.  
  41.  
  42.