source: lxqt/desktop/lxqt-config.xml@ 1b42bcc

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.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 1b42bcc was 1b42bcc, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Add a workaround to lxqt-config

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

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