source: x/wm/xfce.xml@ 058ec4c

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
Last change on this file since 058ec4c was 5cd0959d, checked in by Archaic <archaic@…>, 20 years ago

Resetting keywords

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

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