Changeset feeb99a for x/wm


Ignore:
Timestamp:
06/13/2004 07:03:42 PM (20 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
613c524f
Parents:
60384c68
Message:

XML update for Part VIII (X and friends)

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2309 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
x/wm
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • x/wm/fluxbox.xml

    r60384c68 rfeeb99a  
     1<?xml version="1.0" encoding="ISO-8859-1"?>
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
     3   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
     4  <!ENTITY % general-entities SYSTEM "../../general.ent">
     5  %general-entities;
     6
     7  <!ENTITY fluxbox-download-http "http://prdownloads.sourceforge.net/fluxbox/fluxbox-&fluxbox-version;.tar.bz2">
     8  <!ENTITY fluxbox-download-ftp  " ">
     9  <!ENTITY fluxbox-size          "372 KB">
     10  <!ENTITY fluxbox-buildsize     "53.9 MB">
     11  <!ENTITY fluxbox-time          "1.28 SBU">
     12]>
    113<sect1 id="fluxbox" xreflabel="Fluxbox-&fluxbox-version;">
    214<?dbhtml filename="fluxbox.html" ?>
    315<title>Fluxbox-&fluxbox-version;</title>
    416
    5 &fluxbox-intro;
    6 &fluxbox-inst;
    7 &fluxbox-exp;
    8 &fluxbox-config;
    9 &fluxbox-desc;
     17<sect2>
     18<title>Introduction to <application>Fluxbox</application></title>
     19
     20<para>The <application>Fluxbox</application> package contains a window manager.
     21</para>
     22
     23<sect3><title>Package information</title>
     24<itemizedlist spacing='compact'>
     25<listitem><para>Download (HTTP): <ulink
     26url="&fluxbox-download-http;"/></para></listitem>
     27<listitem><para>Download (FTP): <ulink
     28url="&fluxbox-download-ftp;"/></para></listitem>
     29<listitem><para>Download size: &fluxbox-size;</para></listitem>
     30<listitem><para>Estimated Disk space required:
     31&fluxbox-buildsize;</para></listitem>
     32<listitem><para>Estimated build time:
     33&fluxbox-time;</para></listitem></itemizedlist>
     34</sect3>
     35
     36
     37<sect3><title>Additional downloads</title>
     38<itemizedlist spacing='compact'>
     39<listitem><para>Required patch (HTTP): <ulink
     40url="&patch-root;/fluxbox-0.1.14-gcc33.patch"/></para></listitem>
     41</itemizedlist>
     42</sect3>
     43
     44<sect3><title><application>Fluxbox</application> dependencies</title>
     45<sect4><title>Required</title>
     46<para>X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>)</para></sect4>
     47</sect3>
     48
     49
     50</sect2>
     51
     52<sect2>
     53<title>Installation of <application>Fluxbox</application></title>
     54
     55<para>Install <application>Fluxbox</application> by running the following
     56commands:</para>
     57
     58<screen><userinput><command>patch -Np1 -i ../fluxbox-0.1.14-gcc33.patch &amp;&amp;
     59./configure --prefix=/usr --enable-kde --enable-gnome &amp;&amp;
     60make &amp;&amp;
     61make install</command></userinput></screen>
     62
     63</sect2>
     64
     65<sect2>
     66<title>Command explanations</title>
     67
     68<para><option>--enable-kde</option>: This command activates
     69<application>Fluxbox</application>'s ability to allow
     70<application><acronym>KDE</acronym></application>
     71tray icons to be placed in the slit.</para>
     72
     73<para><option>--disable-nls</option>: This command disables
     74<application>Fluxbox</application>'s ability to support
     75international languages. This is an optional switch to work
     76around a compile problem if you did not install all locales.</para>
     77
     78</sect2>
     79
     80<sect2>
     81<title>Configuring <application>Fluxbox</application></title>
     82
     83<sect3><title>Config files</title>
     84<para><filename>~/.fluxbox/init</filename>,
     85<filename>~/.fluxbox/keys</filename>,
     86<filename>~/.fluxbox/menu</filename></para>
     87</sect3>
     88
     89<sect3><title>Configuration Information</title>
     90
     91<para>Be sure to backup your current <filename>.xinitrc</filename> before
     92proceeding.</para>
     93<screen><userinput><command>cat &gt;&gt; ~/.xinitrc &lt;&lt; "EOF"</command>
     94exec fluxbox
     95<command>EOF</command></userinput></screen>
     96
     97<screen><userinput><command>mkdir ~/.fluxbox &amp;&amp;
     98cp /usr/share/fluxbox/init ~/.fluxbox/init &amp;&amp;
     99cp /usr/share/fluxbox/keys ~/.fluxbox/keys &amp;&amp;
     100cp /usr/share/fluxbox/menu ~/.fluxbox/menu </command></userinput></screen>
     101
     102<para>Menu Items are added by editing <filename>~/.fluxbox/menu</filename>. The
     103syntax is explained on the fluxbox man page.</para>
     104</sect3>
     105
     106</sect2>
     107
     108<sect2>
     109<title>Contents</title>
     110
     111<para>The <application>Fluxbox</application> package contains
     112<command>fluxbox</command>, <command>bsetbg</command> and
     113<command>bsetroot</command>.</para>
     114
     115</sect2>
     116
     117<sect2><title>Description</title>
     118
     119<sect3><title>fluxbox</title>
     120<para><command>fluxbox</command> is a window manager for <application>X11
     121</application> based on <application>Blackbox</application> 0.61.0.</para>
     122</sect3>
     123
     124<sect3><title>bsetbg</title>
     125<para><command>bsetbg</command> is a utility that sets the background image. 
     126It needs <command>display</command>, <command>Esetroot</command>,
     127<command>wmsetbg</command>, <command>xv</command>,
     128<command>qiv</command> or <command>xsri</command> to be used.</para></sect3>
     129
     130<sect3><title>bsetroot</title>
     131<para><command>bsetroot</command> is a <application>Blackbox</application>
     132utility to change root window appearance.</para></sect3>
     133
     134</sect2>
    10135
    11136</sect1>
  • x/wm/metacity.xml

    r60384c68 rfeeb99a  
     1<?xml version="1.0" encoding="ISO-8859-1"?>
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
     3   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
     4  <!ENTITY % general-entities SYSTEM "../../general.ent">
     5  %general-entities;
     6
     7  <!ENTITY metacity-download-http "http://ftp.gnome.org/pub/GNOME/sources/metacity/2.8/metacity-&metacity-version;.tar.bz2">
     8  <!ENTITY metacity-download-ftp  "ftp://ftp.gnome.org/pub/GNOME/sources/metacity/2.8/metacity-&metacity-version;.tar.bz2">
     9  <!ENTITY metacity-size          "1.9 MB">
     10  <!ENTITY metacity-buildsize     "39.8 MB">
     11  <!ENTITY metacity-time          "0.49 SBU">
     12]>
     13
    114<sect1 id="metacity" xreflabel="Metacity-&metacity-version;">
    215<?dbhtml filename="metacity.html" ?>
    316<title>Metacity-&metacity-version;</title>
    417
    5 &metacity-intro;
    6 &metacity-inst;
    7 &metacity-config;
    8 &metacity-desc;
     18<sect2>
     19<title>Introduction to <application>Metacity</application></title>
     20
     21<para>The <application>Metacity</application> package contains a window
     22manager. This is useful for organizing and displaying windows.</para>
     23
     24<sect3><title>Package information</title>
     25<itemizedlist spacing='compact'>
     26<listitem><para>Download (HTTP): <ulink
     27url="&metacity-download-http;"/></para></listitem>
     28<listitem><para>Download (FTP): <ulink
     29url="&metacity-download-ftp;"/></para></listitem>
     30<listitem><para>Download size: &metacity-size;</para></listitem>
     31<listitem><para>Estimated Disk space required:
     32&metacity-buildsize;</para></listitem>
     33<listitem><para>Estimated build time:
     34&metacity-time;</para></listitem></itemizedlist>
     35</sect3>
     36
     37<sect3><title><application>Metacity</application> dependencies</title>
     38<sect4><title>Required</title>
     39<para><xref linkend="intltool"/> and <xref linkend="GTK2"/>
     40</para></sect4>
     41<sect4><title>Optional</title>
     42<para>
     43<xref linkend="startup-notification"/>,
     44<xref linkend="GConf"/>,
     45<ulink url="http://freedesktop.org/Software/xlibs">libXcomposite</ulink>,
     46<ulink url="http://freedesktop.org/Software/xlibs">xrender</ulink> and
     47<ulink url="http://freedesktop.org/Software/xlibs">libXdamage</ulink>
     48</para></sect4>
     49</sect3>
     50
     51</sect2>
     52
     53<sect2>
     54<title>Installation of <application>Metacity</application></title>
     55
     56<para>Install <application>Metacity</application> by running the following commands:</para>
     57
     58<screen><userinput><command>./configure --prefix=/usr --libexecdir=/usr/sbin --sysconfdir=/etc &amp;&amp;
     59make &amp;&amp;
     60make install</command></userinput></screen>
     61
     62</sect2>
     63
     64<sect2>
     65<title>Configuring <application>Metacity</application></title>
     66
     67<sect3><title>Configuration Information</title>
     68
     69<para>Be sure to backup your current <filename>.xinitrc</filename>
     70before proceeding.</para>
     71
     72<screen><userinput><command>cat &gt;&gt; ~/.xinitrc &lt;&lt; "EOF"</command>
     73xterm &amp;
     74exec metacity
     75<command>EOF</command></userinput></screen>
     76</sect3>
     77
     78</sect2>
     79
     80<sect2>
     81<title>Contents</title>
     82
     83<para>The <application>Metacity</application> package contains
     84<command>metacity</command>.</para>
     85
     86</sect2>
     87
     88<sect2><title>Description</title>
     89
     90<sect3><title>metacity</title>
     91<para><command>metacity</command> is a window manager used mainly by GNOME.
     92</para></sect3>
     93
     94</sect2>
    995
    1096</sect1>
  • x/wm/sawfish.xml

    r60384c68 rfeeb99a  
     1<?xml version="1.0" encoding="ISO-8859-1"?>
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
     3   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
     4  <!ENTITY % general-entities SYSTEM "../../general.ent">
     5  %general-entities;
     6
     7<!ENTITY sawfish-download-http "http://prdownloads.sourceforge.net/sawmill/sawfish-&sawfish-version;.tar.gz">
     8<!ENTITY sawfish-download-ftp  " ">
     9<!ENTITY sawfish-size          "1.5 MB">
     10<!ENTITY sawfish-buildsize     "17.5 MB">
     11<!ENTITY sawfish-time          "0.26 SBU">
     12]>
     13
    114<sect1 id="sawfish" xreflabel="sawfish-&sawfish-version;">
    215<?dbhtml filename="sawfish.html" ?>
    316<title>sawfish-&sawfish-version;</title>
    417
    5 &sawfish-intro;
    6 &sawfish-inst;
    7 &sawfish-exp;
    8 &sawfish-config;
    9 &sawfish-desc;
     18<sect2>
     19<title>Introduction to <application>sawfish</application></title>
     20
     21<para>The <application>sawfish</application> package contains a window manager.
     22This is useful for organizing and displaying windows where all window
     23decorations are configurable and all user-interface policy is controlled
     24through the extension language.</para>
     25
     26<sect3><title>Package information</title>
     27<itemizedlist spacing='compact'>
     28<listitem><para>Download (HTTP): <ulink
     29url="&sawfish-download-http;"/></para></listitem>
     30<listitem><para>Download (FTP): <ulink
     31url="&sawfish-download-ftp;"/></para></listitem>
     32<listitem><para>Download size: &sawfish-size;</para></listitem>
     33<listitem><para>Estimated Disk space required:
     34&sawfish-buildsize;</para></listitem>
     35<listitem><para>Estimated build time:
     36&sawfish-time;</para></listitem></itemizedlist>
     37</sect3>
     38                                                                               
     39<sect3><title><application>sawfish</application> dependencies</title>
     40<sect4><title>Required</title>
     41<para>X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>), <xref linkend="librep"/>, <xref
     42linkend="rep-gtk"/>, <xref linkend="esound"/> and <xref linkend="GTK2"/></para>
     43</sect4>
     44<sect4><title>Optional</title>
     45<para><xref linkend="libglade"/></para></sect4>
     46</sect3>
     47
     48
     49</sect2>
     50
     51<sect2>
     52<title>Installation of <application>sawfish</application></title>
     53
     54<para>Install <application>sawfish</application> by running the following
     55commands:</para>
     56
     57<screen><userinput><command>./configure --prefix=/usr --libexec=/usr/sbin --infodir=/usr/share/info \
     58  --with-gnome-prefix=/opt/gnome-&gnome-version; &amp;&amp;
     59make &amp;&amp;
     60make install</command></userinput></screen>
     61
     62
     63</sect2>
     64
     65<sect2>
     66<title>Command explanations</title>
     67
     68<para><option>--with-audiofile</option>: This command directs
     69<application>sawfish</application> to use <filename class="libraryfile">libaudiofile</filename>
     70for sound manipulation.</para>
     71
     72<para><option>--with-esd</option>: This command directs <application>
     73sawfish</application> to use the Enlightened Sound Daemon.</para>
     74
     75<para><option>--with-gnome-prefix=/opt/gnome-&gnome-version;</option>: This
     76command directs <application>sawfish</application> to
     77<application><acronym>GNOME</acronym></application>'s directory.</para>
     78
     79</sect2>
     80
     81<sect2>
     82<title>Configuring <application>sawfish</application></title>
     83
     84<sect3><title>Configuration Information</title>
     85
     86<para>Be sure to backup your current <filename>.xinitrc</filename>
     87before proceeding.</para>
     88
     89<screen><userinput><command>cat &gt;&gt; ~/.xinitrc &lt;&lt; "EOF"</command>
     90exec sawfish
     91<command>EOF</command></userinput></screen>
     92</sect3>
     93
     94</sect2>
     95
     96<sect2>
     97<title>Contents</title>
     98
     99<para>The <application>sawfish</application> package contains <command>
     100sawfish</command>.</para>
     101
     102</sect2>
     103
     104<sect2><title>Description</title>
     105
     106<sect3><title>sawfish</title>
     107<para><command>sawfish</command> is the extensible window manager using a
     108<application>Lisp</application>-based scripting language.</para></sect3>
     109
     110</sect2>
    10111
    11112</sect1>
  • x/wm/wm.xml

    r60384c68 rfeeb99a  
     1<?xml version="1.0" encoding="ISO-8859-1"?>
     2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
     3   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
     4  <!ENTITY % general-entities SYSTEM "../../general.ent">
     5  %general-entities;
     6]>
     7
    18<chapter id="x-wm">
    29<?dbhtml filename="wm.html" ?>
     
    3845</sect1>
    3946
    40 &sawfish;
    41 &fluxbox;
    42 &metacity;
    43 &xfce;
     47<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="sawfish.xml"/> 
     48<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="fluxbox.xml"/> 
     49<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="metacity.xml"/> 
     50<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="xfce.xml"/> 
    4451
    4552</chapter>
  • x/wm/xfce.xml

    r60384c68 rfeeb99a  
     1<?xml version="1.0" encoding="ISO-8859-1"?>
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
     3   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
     4  <!ENTITY % general-entities SYSTEM "../../general.ent">
     5  %general-entities;
     6
     7  <!ENTITY xfce-download-http "http://prdownloads.sourceforge.net/xfce/xfce-&xfce-version;-src.tar.bz2">
     8  <!ENTITY xfce-download-ftp  " ">
     9  <!ENTITY xfce-size          "18 MB">
     10  <!ENTITY xfce-buildsize     "224 MB">
     11  <!ENTITY xfce-time          "3.35 SBU">
     12]>
     13
    114<sect1 id="xfce" xreflabel="XFce-&xfce-version;">
    215<?dbhtml filename="xfce.html" ?>
    316<title>XFce-&xfce-version;</title>
    417
    5 &xfce-intro;
    6 &xfce-inst;
    7 &xfce-config;
    8 &xfce-desc;
     18<sect2>
     19<title>Introduction to <application>XFce</application></title>
     20
     21<para>The <application>XFce</application> package contains a lightweight desktop environment.</para>
     22
     23<sect3><title>Package information</title>
     24<itemizedlist spacing='compact'>
     25<listitem><para>Download (HTTP): <ulink
     26url="&xfce-download-http;"/></para></listitem>
     27<listitem><para>Download (FTP): <ulink
     28url="&xfce-download-ftp;"/></para></listitem>
     29<listitem><para>Download size: &xfce-size;</para></listitem>
     30<listitem><para>Estimated Disk space required:
     31&xfce-buildsize;</para></listitem>
     32<listitem><para>Estimated build time:
     33&xfce-time;</para></listitem></itemizedlist>
     34</sect3>
     35                                                                               
     36<sect3><title><application>XFce</application> dependencies</title>
     37<sect4><title>Required</title>
     38<para><xref linkend="GTK2"/> and <xref
     39linkend="libxml2"/></para></sect4>
     40<sect4><title>Optional</title>
     41<para><xref linkend="libgtkhtml"/> and <xref
     42linkend="startup-notification"/>
     43</para></sect4>
     44</sect3>
     45
     46</sect2>
     47
     48<sect2>
     49<title>Installation of <application>XFce</application></title>
     50
     51<para><application>XFce</application> now distributes as a
     52<acronym>TAR</acronym> ball of
     53base packages and module packages. These instructions will only cover
     54the bare minimum to run the application.  The remaining modules would
     55all follow the same pattern which will soon become obvious.</para>
     56<para>Install <application>XFce</application> by running the following commands:</para>
     57
     58<screen><userinput><command>cd src &amp;&amp;
     59tar xzvf libxfce4util-&xfce-version;.tar.gz &amp;&amp;
     60cd libxfce4util-&xfce-version; &amp;&amp;
     61./configure --prefix=/usr &amp;&amp;
     62make &amp;&amp;
     63make install &amp;&amp;
     64cd .. &amp;&amp;
     65tar xzvf libxfcegui4-&xfce-version;.tar.gz &amp;&amp;
     66cd libxfcegui4-&xfce-version; &amp;&amp;
     67./configure --prefix=/usr &amp;&amp;
     68make &amp;&amp;
     69make install &amp;&amp;
     70cd .. &amp;&amp;
     71tar xzvf libxfce4mcs-&xfce-version;.tar.gz &amp;&amp;
     72cd libxfce4mcs-&xfce-version; &amp;&amp;
     73./configure --prefix=/usr &amp;&amp;
     74make &amp;&amp;
     75make install &amp;&amp;
     76cd .. &amp;&amp;
     77tar xzvf xfce-mcs-manager-&xfce-version;.tar.gz &amp;&amp;
     78cd xfce-mcs-manager-&xfce-version; &amp;&amp;
     79./configure --prefix=/usr &amp;&amp;
     80make &amp;&amp;
     81make install &amp;&amp;
     82cd .. &amp;&amp;
     83tar xzvf xfwm4-&xfce-version;.tar.gz &amp;&amp;
     84cd xfwm4-&xfce-version; &amp;&amp;
     85./configure --prefix=/usr &amp;&amp;
     86make &amp;&amp;
     87make install &amp;&amp;
     88cd .. &amp;&amp;
     89tar xzvf xfdesktop-&xfce-version;.tar.gz &amp;&amp;
     90cd xfdesktop-&xfce-version; &amp;&amp;
     91./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
     92make &amp;&amp;
     93make install &amp;&amp;
     94cd .. &amp;&amp;
     95tar xzvf xfce4-panel-&xfce-version;.tar.gz &amp;&amp;
     96cd xfce4-panel-&xfce-version; &amp;&amp;
     97./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
     98make &amp;&amp;
     99make install &amp;&amp;
     100cd .. &amp;&amp;
     101tar xzvf xfce-utils-&xfce-version;.tar.gz &amp;&amp;
     102cd xfce-utils-&xfce-version; &amp;&amp;
     103./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
     104make &amp;&amp;
     105make install</command></userinput></screen>
     106
     107<para>Modules not installed above are: dbh-1.0.15 (required for xffm),
     108gtk-xfce-engine-2.1.9, xfcalendar-0.1.6, xfce-mcs-plugins, xfce4-iconbox, xfce4-mixer,
     109xfce4-systray, xfce4-themes, xfce4-toys, xfce4-trigger-launcher, xffm,
     110xffm-icons, xfprint and xfwm4-themes.</para>
     111
     112</sect2>
     113
     114<sect2>
     115<title>Configuring <application>XFce</application></title>
     116
     117<sect3><title>Config files</title>
     118<para><filename>~/.xinitrc</filename></para>
     119</sect3>
     120
     121<sect3><title>Configuration Information</title>
     122
     123<para>Be sure to backup your current <filename>.xinitrc</filename>
     124before
     125proceeding.</para>
     126<screen><userinput><command>cat &gt;&gt; ~/.xinitrc &lt;&lt; "EOF"</command>
     127xfce-mcs-manager
     128xfwm4 --daemon
     129xftaskbar4 &amp;
     130xfdesktop &amp;
     131exec xfce4-panel
     132<command>EOF</command></userinput></screen>
     133
     134
     135</sect3>
     136
     137</sect2>
     138
     139<sect2>
     140<title>Contents</title>
     141
     142<para>The <application>XFce</application> package contains
     143<command>fgr</command>,
     144<command>scramble</command>,
     145<command>startxfce4</command>,
     146<command>xfapps</command>,
     147<command>xfapps4</command>,
     148<command>xfbook</command>,
     149<command>xfbook4</command>,
     150<command>xfcalendar</command>,
     151<command>xfce-mcs-manager</command>,
     152<command>xfce-setting-show</command>,
     153<command>xfce4-about</command>,
     154<command>xfce4-iconbox</command>,
     155<command>xfce4-panel</command>,
     156<command>xfce4-tips</command>,
     157<command>xfdesktop</command>,
     158<command>xfdiff4</command>,
     159<command>xffm</command>,
     160<command>xffstab</command>,
     161<command>xffstab4</command>,
     162<command>xfglob4</command>,
     163<command>xfhelp4</command>,
     164<command>xflock4</command>,
     165<command>xfmountdev4</command>,
     166<command>xfprint-manager</command>,
     167<command>xfprint4</command>,
     168<command>xfrun4</command>,
     169<command>xfsamba4</command>,
     170<command>xftaskbar4</command>,
     171<command>xfterm4</command>,
     172<command>xftrash4</command>,
     173<command>xftree4</command>,
     174<command>xfwm4</command> and
     175<filename class="libraryfile">libdbh</filename>,
     176<filename class="libraryfile">libxfce4mcs</filename>,
     177<filename class="libraryfile">libxfce4util</filename>,
     178<filename class="libraryfile">libxfcegui4</filename>,
     179<filename class="libraryfile">libxffm</filename> and
     180<filename class="libraryfile">libxfprint</filename> libraries.
     181</para>
     182
     183</sect2>
     184
     185<sect2><title>Description</title>
     186
     187<sect3><title>fgr</title>
     188<para><command>fgr</command> is a file content search engine for
     189<command>xffm</command>.</para></sect3>
     190
     191<sect3><title>xfce-mce-manager</title>
     192<para><command>xfce-mce-manager</command> is the settings manager for
     193<application>XFce</application>.</para></sect3>
     194
     195<sect3><title>xfce4-about</title>
     196<para><command>xfce4-about</command> displays the about box.</para></sect3>
     197
     198<sect3><title>xfce-setting-show</title>
     199<para><command>xfce_setting-show</command> displays the settings for
     200<application>XFce</application>.</para></sect3>
     201
     202<sect3><title>xfce4-panel</title>
     203<para><command>xfce4-panel</command> is the panel manager for
     204<application>XFce</application>. It contains the launcher, clock, mail
     205check, desktop switcher and separator programs.</para></sect3>
     206
     207<sect3><title>xfdesktop</title>
     208<para><command>xfdesktop </command> is the desktop manager
     209for <application>XFce</application>.</para></sect3>
     210
     211<sect3><title>xfhelp4</title>
     212<para><command>xfhelp4</command> is script that launches a
     213<acronym>HTML</acronym> browser to display online documentation.</para></sect3>
     214
     215<sect3><title>xflock4</title>
     216<para><command>xflock4</command> is a script used to lock the current screen
     217during drag and drop actions.</para></sect3>
     218
     219<sect3><title>xfmountdev4</title>
     220<para><command>xfmountdev4</command> mounts a device on the specified mount
     221point and launches <command>xftree4</command>, then unmounts the device
     222when <command>xftree4</command> finishes.</para></sect3>
     223
     224<sect3><title>xfrun4</title>
     225<para><command>xfrun4</command> is the program launcher for
     226<application>XFce</application>.</para></sect3>
     227
     228<sect3><title>xfsamba4</title>
     229<para><command>xfsamba4</command> is <application>Samba</application> front end
     230for <application>XFce</application>.</para></sect3>
     231
     232<sect3><title>xftaskbar4</title>
     233<para><command>xftaskbar4</command> is the taskbar manager for
     234<application>XFce</application>.</para></sect3>
     235
     236<sect3><title>xfterm4</title>
     237<para><command>xfterm4</command> is a small terminal wrapper to be used as a
     238drag and drop action for the <application>XFce</application> front panel.
     239</para></sect3>
     240
     241<sect3><title>xftrash4</title>
     242<para><command>xftrash4</command> is a small script to be used as a drag and
     243drop action for the <application>XFce</application> front panel.</para></sect3>
     244
     245<sect3><title>xftree4</title>
     246<para><command>xftree4</command> is the file manager for
     247<application>XFce</application>.</para></sect3>
     248
     249<sect3><title>xfwm4</title>
     250<para><command>xfwm4</command> is a window manager for
     251<application>X11</application>.</para></sect3>
     252
     253</sect2>
    9254
    10255</sect1>
Note: See TracChangeset for help on using the changeset viewer.