glfs/gnome/core/config.xml
Randy McMurchy 2a5ecb33f8 Added a test suite note to the system-tools-backends instructions; minor XML cleanup on some other GNOME files
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4133 af4574ff-66df-0310-9fd7-8a98e5e911e0
2005-05-11 16:12:27 +00:00

68 lines
2.3 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
]>
<sect1 id="gnome-config">
<sect1info>
<othername>$LastChangedBy$</othername>
<date>$Date$</date>
</sect1info>
<?dbhtml filename="config.html"?>
<title>Configuring the core GNOME packages</title>
<para>Create (or append to) an <filename>.xinitrc</filename> file to start
<application>GNOME</application>:</para>
<screen><userinput>echo "exec gnome-session" &gt;&gt; ~/.xinitrc</userinput></screen>
<para>Ensure all libraries can be found with (as root):</para>
<screen role='root'><userinput>ldconfig</userinput></screen>
<para>Update the <acronym>MIME</acronym>-type application database
(as root):</para>
<screen role='root'><userinput>update-desktop-database</userinput></screen>
<!-- I'm not sure this is required in GNOME-2.10.1, as it all appears to work
<para>There are reports of some panel icons not being displayed properly when
using some themes, especially if your <envar>$GNOME_PREFIX</envar> is not
<filename class='directory'>/usr</filename>. As the root user, add the
following lines to <filename>$GNOME_PREFIX/share/gnome-panelrc</filename> to
correct the problem (ensure you substitute the correct path in the
pixmap_path, if necessary):</para>
<screen role='root'><userinput>cat &gt;&gt; $GNOME_PREFIX/share/gnome-panelrc &lt;&lt; "EOF"</userinput>
<literal>
pixmap_path "/opt/gnome-2.8/share/pixmaps"
style "panel-icons"
{
stock ["panel-screenshot"] = {{"gnome-screenshot.png"}}
stock ["panel-gnome-logo"] = {{"gnome-logo-icon-transparent.png"}}
stock ["panel-cde"] = {{"cdeappmenu.png"}}
stock ["panel-launcher"] = {{"launcher-program.png"}}
stock ["panel-run"] = {{"gnome-run.png"}}
stock ["panel-drawer"] = {{"panel-drawer.png"}}
stock ["panel-main-menu"] = {{"gnome-main-menu.png"}}
stock ["panel-force-quit"] = {{"panel-force-quit.png"}}
}
class "GtkWidget" style "panel-icons"
</literal>
<userinput>EOF</userinput></screen>
-->
<para>At this point you can bring up <application>GNOME</application> with
<command>startx</command>.</para>
</sect1>