diff options
author | Isaac Yu <isaacyu1@isaacyu1.com> | 2022-07-21 21:52:39 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-07-23 11:13:16 +0700 |
commit | de64d28e52d40227f96bb33e22966b155bb86cc8 (patch) | |
tree | 8d6a81f0f77c4d87e8d82d150df68b69c04ffde1 | |
parent | 67d4ca5b7537a871174c3907136e694f12028bed (diff) |
desktop/qtile: Fix xinitrc.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | desktop/qtile/qtile.SlackBuild | 2 | ||||
-rw-r--r-- | desktop/qtile/xinitrc.qtile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/desktop/qtile/qtile.SlackBuild b/desktop/qtile/qtile.SlackBuild index 4d5e4f27c1b9..673b4bc2acf3 100644 --- a/desktop/qtile/qtile.SlackBuild +++ b/desktop/qtile/qtile.SlackBuild @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=qtile VERSION=${VERSION:-0.21.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} diff --git a/desktop/qtile/xinitrc.qtile b/desktop/qtile/xinitrc.qtile index a2c7cde278ae..b23bc7c340f8 100644 --- a/desktop/qtile/xinitrc.qtile +++ b/desktop/qtile/xinitrc.qtile @@ -24,7 +24,7 @@ fi # Start qtile if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then - exec ck-launch-session qtile + exec ck-launch-session dbus-launch --exit-with-session qtile start else - exec qtile + exec dbus-launch --exit-with-session qtile start fi |