summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author isaackwy <isaacyu@protonmail.com>2023-12-29 19:00:32 -0800
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2023-12-31 07:46:54 +0700
commit1608e06c697a5f211906a1af419a0131d8a636ee (patch)
tree08adbafda967b6c2be8db95070d7724fea66a4a7 /desktop
parente437ec766946713719a893d23198829594ead546 (diff)
downloadslackbuilds-1608e06c697a5f211906a1af419a0131d8a636ee.tar.gz
slackbuilds-1608e06c697a5f211906a1af419a0131d8a636ee.tar.xz
desktop/lxqt-panel: Update README and SlackBuild
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/lxqt-panel/README4
-rw-r--r--desktop/lxqt-panel/lxqt-panel.SlackBuild16
-rw-r--r--desktop/lxqt-panel/lxqt-panel.info2
3 files changed, 9 insertions, 13 deletions
diff --git a/desktop/lxqt-panel/README b/desktop/lxqt-panel/README
index 9ec2e8635f..7694be60a2 100644
--- a/desktop/lxqt-panel/README
+++ b/desktop/lxqt-panel/README
@@ -10,3 +10,7 @@ To add support for the CPU Load and Network Monitor plugins, pass
LIBSTATGRAB=yes to the SlackBuild.
To add support for the System Stats plugin, pass
LIBSYSSTAT=yes to the SlackBuild.
+
+For a default panel configuration, copy the example file provided by
+LXQt to the user $HOME config:
+cp /usr/share/lxqt/panel.conf $HOME/.config/lxqt/
diff --git a/desktop/lxqt-panel/lxqt-panel.SlackBuild b/desktop/lxqt-panel/lxqt-panel.SlackBuild
index 0bd0f431c4..4ea95a8238 100644
--- a/desktop/lxqt-panel/lxqt-panel.SlackBuild
+++ b/desktop/lxqt-panel/lxqt-panel.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for lxqt-panel
-# Copyright 2022-2023 Isaac Yu <isaacyu@protonmail.com>
+# Copyright 2022-2024 Isaac Yu <isaacyu@protonmail.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=lxqt-panel
VERSION=${VERSION:-1.3.0}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -77,18 +77,10 @@ find -L . \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# Build with libstatgrab as optional dependency (enable CPU Load and Network Monitor plugins)
-if [ ${LIBSTATGRAB:-no} = yes ]; then
- ENABLE_STATGRAB=YES
-else
- ENABLE_STATGRAB=NO
-fi
+[ ${LIBSTATGRAB:-no} = yes ] && ENABLE_STATGRAB=YES || ENABLE_STATGRAB=NO
# Build with libsysstat as optional dependency (enable System Stats plugin)
-if [ ${LIBSYSSTAT:-no} = yes ]; then
- ENABLE_SYSSTAT=YES
-else
- ENABLE_SYSSTAT=NO
-fi
+[ ${LIBSYSSTAT:-no} = yes ] && ENABLE_SYSSTAT=YES || ENABLE_SYSSTAT=NO
mkdir build
cd build
diff --git a/desktop/lxqt-panel/lxqt-panel.info b/desktop/lxqt-panel/lxqt-panel.info
index ac8d408c79..50f64e55e9 100644
--- a/desktop/lxqt-panel/lxqt-panel.info
+++ b/desktop/lxqt-panel/lxqt-panel.info
@@ -5,6 +5,6 @@ DOWNLOAD="https://github.com/lxqt/lxqt-panel/releases/download/1.3.0/lxqt-panel-
MD5SUM="98f8b9b8f47ec0b1e7bc5eca475b7f45"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES="lxqt-globalkeys lxmenu-data"
+REQUIRES="lxqt-globalkeys lxqt-menu-data"
MAINTAINER="Isaac Yu"
EMAIL="isaacyu@protonmail.com"