Add a couple more nits while I avoid studying for my upcoming midterm:

* a couple grammar nits
* note that gtkrc works in gtkrc-2.0, but not the other way around
* note that GDM session files have to be executable
This commit is contained in:
Adam Weinberger 2003-10-17 16:05:28 +00:00
parent a3879e283d
commit e8276cdd49
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=18465

View file

@ -1,6 +1,6 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" [
<!ENTITY base CDATA "../..">
<!ENTITY date "$FreeBSD: www/en/gnome/docs/faq2.sgml,v 1.49 2003/10/17 15:34:50 adamw Exp $">
<!ENTITY date "$FreeBSD: www/en/gnome/docs/faq2.sgml,v 1.50 2003/10/17 15:43:25 adamw Exp $">
<!ENTITY title "FreeBSD GNOME Project: GNOME &gnomever; FAQ">
<!ENTITY % gnomeincludes SYSTEM "../includes.sgml"> %gnomeincludes;
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
@ -368,7 +368,7 @@ Load "freetype"
Load "type1"
</pre>
<p>Then, simply checkout the Fonts capplet under
<p>Then, simply check out the Fonts capplet under
Applications->Desktop Preferences. If you want a good set
of TrueType starter fonts, install the
<tt>x11-fonts/webfonts</tt> port.</p>
@ -376,7 +376,7 @@ Load "type1"
<p>Sometimes, after adding new fonts to the system, it is
necessary to teach fontconfig about them. If you find that
newly added fonts are not made available even after
restarting GNOME 2, run the following command as root.</p>
restarting GNOME 2, run the following command as root:</p>
<pre>
# fc-cache -f -v
@ -462,6 +462,11 @@ Load "type1"
<pre>gtk-font-name = "Verdana 11"</pre>
</li>
</ol>
<p> Note that while a GTK+ 1.2 <tt>gtkrc</tt> file will work
in a GTK+ 2 <tt>gtkrc-2.0</tt> file, the opposite is <i>not</i>
true: the contents of a GTK+ 2 <tt>gtkrc-2.0</tt> file will
<i>not</i> work inside a GTK+ 1.2 <tt>gtkrc</tt> file.</p>
</li>
<!-- Q14 -->
@ -479,12 +484,12 @@ Load "type1"
<p><b>Nautilus-cd-burner does not let me burn CDs. How can I
fix this?</b></p>
<!-- A15 -->
<p>Nautilus-cd-burner cannot write to CD/DVD burners if support
for those devices is not enabled in the kernel, or if the
permissions on the device nodes do not allow write access.
<p>Nautilus-cd-burner cannot write to CD/DVD burners unless support
for those devices is enabled in the kernel, and the
permissions on the device nodes allow write access.
Nautilus-cd-burner talks to CD/DVD burners through the
SCSI CAM subsystem. Therefore, you must make sure
you have the following configured in your kernel :</p>
you have the following configured in your kernel:</p>
<pre>
device scbus
@ -539,9 +544,9 @@ perm pass0 0666
<li style="padding-bottom: 0.5em"><a name="q16"></a>
<p><b>How do I add new GDM sessions?</b></p>
<!-- A16 -->
<p>Adding new GDM sessions has changed substantially between GNOME
2.2 and &gnomever;. In order to add new sessions now, you
must create a <tt>.desktop</tt> file containing the session
<p>The process for adding new GDM sessions has changed substantially
between GNOME 2.2 and &gnomever;. In order to add new sessions
now, you must create a <tt>.desktop</tt> file containing the session
configuration information. Session files live in
<tt>/usr/X11R6/etc/dm/Sessions</tt>. For example, to add
a KDE session, create a file in <tt>/usr/X11R6/etc/dm/Sessions</tt>
@ -559,6 +564,12 @@ Icon=
Type=Application
</pre>
<p>This file must have execute permissions. For example:</p>
<pre>
# chmod 0555 kde.desktop
</pre>
<p>After creating this file, restart GDM, and there will be a
<b>KDE</b> link under the <em>Sessions</em> menu.</p>
</li>