The lxqt-panel package contains a lightweight X11 desktop panel.
This package is known to build and work properly using an LFS-8.1 platform.
Download (HTTP): https://github.com/lxde/lxqt-panel/releases/download/0.11.1/lxqt-panel-0.11.1.tar.xz
Download MD5 sum: bf84113e02c84c32b90539855a3e6139
Download size: 260 KB
Estimated disk space required: 20 MB
Estimated build time: 1.4 SBU
KDE Frameworks-5.37.0 or (kguiaddons-5.37.0 for lxqt and solid-5.37.0 for lxqt) (keyboard indicator plugin), lxqt-globalkeys-0.11.1, libdbusmenu-qt-0.9.3+16.04.20160218, liblxqt-0.11.1, lxmenu-data-0.1.5, and menu-cache-1.0.2
alsa-lib-1.1.4.1 or PulseAudio-10.0 (volume plugin), libstatgrab-0.91 (network monitor and CPU load plugins), libsysstat-0.3.3 (CPU and network monitor plugins), libxkbcommon-0.7.2 (keyboard indicator plugin), and lm_sensors-3.4.0 (sensors plugin)
git-2.14.1 (to download translation files) or lxqt-l10n-0.11.2 (to add localization files)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/lxqt-panel
Install lxqt-panel by running the following commands:
sed -e 's:<KF5/KWindowSystem/:<:' \ -i plugin-taskbar/lxqttaskgroup.{h,cpp} && sed -e '/kbdinfo.h/i #undef explicit' \ -i plugin-kbindicator/src/x11/kbdlayout.cpp && mkdir -v build && cd build && cmake -DCMAKE_INSTALL_PREFIX=$LXQT_PREFIX \ -DCMAKE_BUILD_TYPE=Release \ -DPULL_TRANSLATIONS=no \ -DCMAKE_INSTALL_LIBDIR=lib \ .. && make
This package does not come with a test suite.
Now, as the root
user:
make install
sed ... plugin-taskbar/lxqttaskgroup.{h,cpp}: Removes a hard coded directory from an include file and allows the system to find it.
sed ... kbdlayout.cpp: Fixes an upstream workaround for a namespace conflict. See this archlinux patch.
-DPULL_TRANSLATIONS=no
:
Removes the need for git-2.14.1, which would otherwise be
requested to download the translation files.
-D<plugin>_PLUGIN=no
: Disable
<plugin>, where <plugin> may be CLOCK, COLORPICKER,
CPULOAD, DIRECTORYMENU, DESKTOPSWITCH, KBINDICATOR, MAINMENU,
MOUNT, QUICKLAUNCH, SENSORS, SHOWDESKTOP, NETWORKMONITOR, SYSSTAT,
TASKBAR, STATUSNOTIFIER, TRAY, VOLUME, WORLDCLOCK, or SPACER,
-DVOLUME_USE_<backend>=no
:
Disable support for <backend> in volume plugin, where backend
is ALSA or PULSEAUDIO.
Last updated on 2017-08-31 01:16:09 -0700