Chris Beamis wrote:
[]
But of course it isn't going to be quite that easy...
My .xinitrc file looks like below, and I put the messages printed to the OS-X xterm below that.
The .xinitrc is just a copy of the system xinitrc plus a few lines at the bottom from an example
on the fink help page at sourceforge.

It puts 3 xterms on the screen, each with black print on white background.
Question 1) I can't seem to move them, or minimize them or anything except type in them.
This is because you don't start any window manager, see below.
[]
Question 2) I just installed The Gimp, and checked to see if it is  there by

Wormwood:~] beamis% echo $PATH
/sw/bin:/sw/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin
[[Wormwood:~] beamis% which gimp
gimp: Command not found.
[Wormwood:~] beamis% which /sw/bin/gimp
/sw/bin/gimp
If this happens, you need to issue a "rehash" command. This will refresh tcsh's internal list of all executables in the PATH. As you noticed, starting a new shell in a new window does the trick, too.

Now to your .xinitrc file"

#!/bin/sh
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $

source /sw/bin/init.sh
This is OK.

[copy of system xinitrc omitted]

xclock -geometry 50x50-1+1 &
xterm -geometry 80x50+494+51 &
xterm -geometry 80x20+494-0 &
exec xterm -geometry 80x66+0+0 -name login
This is the last line executed. The following lines will be ignored. "exec" does this, so want to have only one line beginning with "exec" in your ~/.xinitrc.


xset b off
exec enlightenment
#exec twm
Your enlightenment will never be started.

--
Martin




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-beginners mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-beginners

Reply via email to