source: lxqt/desktop/lxqt-config.xml@ 1608f96

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 1608f96 was a822cb5, checked in by Pierre Labastie <pieere@…>, 7 years ago

LXQt:

  • tag desktop
  • change download links to github
  • two updates

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

  • Property mode set to 100644
File size: 9.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!-- As of August 2017, downloads.lxqt.org is down. Use github archives
8 instead, but keep the old link in case the host become available again.
9 According to lxqt devs, they are working on it...
10 <!ENTITY lxqt-config-download-http "&lxqt-http-repo;/&lxqt-version;/lxqt-config-&lxqt-config-version;.tar.xz">-->
11 <!ENTITY lxqt-config-download-http "https://github.com/lxde/lxqt-config/releases/download/&lxqt-config-version;/lxqt-config-&lxqt-config-version;.tar.xz">
12 <!ENTITY lxqt-config-download-ftp " ">
13 <!ENTITY lxqt-config-md5sum "e134a01c1e466170c7e498455abfb62f">
14 <!ENTITY lxqt-config-size "196 KB">
15 <!ENTITY lxqt-config-buildsize "14 MB">
16 <!ENTITY lxqt-config-time "0.8 SBU">
17]>
18
19<sect1 id="lxqt-config" xreflabel="lxqt-config-&lxqt-config-version;">
20 <?dbhtml filename="lxqt-config.html"?>
21
22 <sect1info>
23 <othername>$LastChangedBy$</othername>
24 <date>$Date$</date>
25 </sect1info>
26
27 <title>lxqt-config-&lxqt-config-version;</title>
28
29 <indexterm zone="lxqt-config">
30 <primary sortas="a-lxqt-config">lxqt-config</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to lxqt-config</title>
35
36 <para>
37 The <application>lxqt-config</application> package provides the
38 <application>LXQt</application> system settings center.
39 </para>
40
41 &lfs81_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&lxqt-config-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&lxqt-config-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &lxqt-config-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &lxqt-config-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &lxqt-config-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &lxqt-config-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">lxqt-config Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
81 <xref linkend="liblxqt"/> and
82 (<xref linkend="lxqt-libkscreen"/> or
83 <xref linkend="plasma5-build"/>)
84 </para>
85
86 <bridgehead renderas="sect4">Optional</bridgehead>
87 <para role="optional">
88 <xref linkend="git"/> (to download translation files) or
89 <xref linkend="lxqt-l10n"/> (to add localization files)
90 </para>
91
92 <para condition="html" role="usernotes">
93 User Notes: <ulink url="&blfs-wiki;/lxqt-config"/>
94 </para>
95 </sect2>
96
97 <sect2 role="installation">
98 <title>Installation of lxqt-config</title>
99
100 <para>First, do a temporary workaround due to cmake-3.8:</para>
101
102<screen><userinput>new='../liblxqt-config-cursor/lxqt-config-cursor_autogen/include'
103
104sed -i "/CURRENT_BINARY_DIR/a \"\${CMAKE_CURRENT_BINARY_DIR}/$new\"" \
105 lxqt-config-appearance/CMakeLists.txt \
106 lxqt-config-input/CMakeLists.txt &amp;&amp;
107unset new</userinput></screen>
108
109 <para>
110 Install <application>lxqt-config</application> by running the following
111 commands:
112 </para>
113
114<screen><userinput>mkdir -v build &amp;&amp;
115cd build &amp;&amp;
116
117cmake -DCMAKE_INSTALL_PREFIX=$LXQT_PREFIX \
118 -DCMAKE_BUILD_TYPE=Release \
119 -DPULL_TRANSLATIONS=no \
120 -DCMAKE_INSTALL_LIBDIR=lib \
121 .. &amp;&amp;
122
123make</userinput></screen>
124
125 <para>
126 This package does not come with a test suite.
127 </para>
128
129 <para>
130 Now, as the <systemitem class="username">root</systemitem> user:
131 </para>
132
133<screen role="root"><userinput>make install</userinput></screen>
134
135 </sect2>
136
137 <sect2 role="commands">
138 <title>Command Explanations</title>
139
140 <para>
141 <parameter>-DPULL_TRANSLATIONS=no</parameter>: Removes the need for
142 <xref linkend="git"/>, which would otherwise be requested to download
143 the translation files.
144 </para>
145
146 </sect2>
147
148 <sect2 role="content">
149 <title>Contents</title>
150
151 <segmentedlist>
152 <segtitle>Installed Programs</segtitle>
153 <segtitle>Installed Library</segtitle>
154 <segtitle>Installed Directories</segtitle>
155
156 <seglistitem>
157 <seg>
158 lxqt-config, lxqt-config-appearance, lxqt-config-brightness,
159 lxqt-config-file-associations, lxqt-config-input, lxqt-config-locale,
160 and lxqt-config-monitor
161 </seg>
162 <seg>
163 liblxqt-config-cursor.so
164 </seg>
165 <seg>
166 $LXQT_PREFIX/lib/lxqt-config
167 </seg>
168 </seglistitem>
169 </segmentedlist>
170
171 <variablelist>
172 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
173 <?dbfo list-presentation="list"?>
174 <?dbhtml list-presentation="table"?>
175
176 <varlistentry id="lxqt-config-prog">
177 <term><command>lxqt-config</command></term>
178 <listitem>
179 <para>
180 is the <application>LXQt</application> configuration center.
181 </para>
182 <indexterm zone="lxqt-config lxqt-config-prog">
183 <primary sortas="b-lxqt-config">lxqt-config</primary>
184 </indexterm>
185 </listitem>
186 </varlistentry>
187
188 <varlistentry id="lxqt-config-appearance">
189 <term><command>lxqt-config-appearance</command></term>
190 <listitem>
191 <para>
192 is the <application>LXQt</application> program used to change
193 themes, icon themes, and fonts used by applications.
194 </para>
195 <indexterm zone="lxqt-config lxqt-config-appearance">
196 <primary sortas="b-lxqt-config-appearance">lxqt-config-appearance</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="lxqt-config-brightness">
202 <term><command>lxqt-config-brightness</command></term>
203 <listitem>
204 <para>
205 configures brightness settings of ouput devices.
206 </para>
207 <indexterm zone="lxqt-config lxqt-config-brightness">
208 <primary sortas="b-lxqt-config-brightness">lxqt-config-brightness</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="lxqt-config-file-associations">
214 <term><command>lxqt-config-file-associations</command></term>
215 <listitem>
216 <para>
217 is the <application>LXQt</application> program used to associate
218 files with programs.
219 </para>
220 <indexterm zone="lxqt-config lxqt-config-file-associations">
221 <primary sortas="b-lxqt-config-file-associations">lxqt-config-file-associations</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 <varlistentry id="lxqt-config-input">
227 <term><command>lxqt-config-input</command></term>
228 <listitem>
229 <para>
230 is the <application>LXQt</application> program used to configure
231 input devices (e.g. mouse speed, cursor, keyboard speed, keyboard
232 layout).
233 </para>
234 <indexterm zone="lxqt-config lxqt-config-input">
235 <primary sortas="b-lxqt-config-input">lxqt-config-input</primary>
236 </indexterm>
237 </listitem>
238 </varlistentry>
239
240 <varlistentry id="lxqt-config-locale">
241 <term><command>lxqt-config-locale</command></term>
242 <listitem>
243 <para>
244 configures the locale used in <application>LXQt</application>
245 sessions.
246 </para>
247 <indexterm zone="lxqt-config lxqt-config-locale">
248 <primary sortas="b-lxqt-config-locale">lxqt-config-locale</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 <varlistentry id="lxqt-config-monitor">
254 <term><command>lxqt-config-monitor</command></term>
255 <listitem>
256 <para>
257 is the <application>LXQt</application>
258 <application>xrandr</application> based program used to configure
259 the monitor.
260 </para>
261 <indexterm zone="lxqt-config lxqt-config-monitor">
262 <primary sortas="b-lxqt-config-monitor">lxqt-config-monitor</primary>
263 </indexterm>
264 </listitem>
265 </varlistentry>
266
267 <varlistentry id="liblxqt-config-cursor-lib">
268 <term><filename class="libraryfile">liblxqt-config-cursor.so</filename></term>
269 <listitem>
270 <para>
271 contains the <application>liblxqt-config-cursor</application> API
272 functions.
273 </para>
274 <indexterm zone="lxqt-config liblxqt-config-cursor-lib">
275 <primary sortas="c-liblxqt-config-cursor">liblxqt-config-cursor.so</primary>
276 </indexterm>
277 </listitem>
278 </varlistentry>
279
280 </variablelist>
281
282 </sect2>
283
284</sect1>
Note: See TracBrowser for help on using the repository browser.