看readme如何启动,还是不太懂,高手给总结一下
The easiest way is to create a garnome-session script, and use the
standard method your distribution provides to launch it when you start
X. Here's what the script should look like:
Just set the GARNOME variable at the top to wherever you installed
GARNOME. It will usually be $HOME/garnome, as above.
If you start X with the startx command you should launch this in
~/.xinitrc. If you use the Xsession menu choice in GDM, you should
launch this in ~/.xsession. Assuming the garnome-session script is in
your path, both files should look like this:
#!/bin/sh
exec garnome-session
My own startup script is a little bit funkier:
#!/bin/sh
xset -solid black
if [ -e /home/pd/.fonts ]; then
xset fp+ /home/pd/.fonts/
xset fp rehash
fi
exec /usr/bin/ssh-agent /home/pd/garnome/bin/garnome-session & wmpid=$!
wait $wmpid
可是我的/garnome/bin下并没有gnome-session啊