diff options
author | Eric Hameleers <alien@slackware.com> | 2017-10-25 21:09:28 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2017-10-25 21:09:28 +0200 |
commit | ad0b718d1f085dc4f42c6b597bd4d3ac1c09abce (patch) | |
tree | 508b227912055a4c0a6828d6e6db83952ae81051 /make_slackware_live.sh | |
parent | a2cd76d17829ecded586b0a5f394958552c672aa (diff) | |
download | liveslak-ad0b718d1f085dc4f42c6b597bd4d3ac1c09abce.tar.gz liveslak-ad0b718d1f085dc4f42c6b597bd4d3ac1c09abce.tar.xz |
PLASMA5: support Wayland session in SDDM
Diffstat (limited to 'make_slackware_live.sh')
-rwxr-xr-x | make_slackware_live.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index 4518b7f..03e8fb9 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -1687,8 +1687,11 @@ if [ "$LIVEDE" = "PLASMA5" ]; then rm -f ${LIVE_ROOTDIR}/usr/share/xsessions/openbox-session.desktop || true # Remove the buggy mediacenter session: rm -f ${LIVE_ROOTDIR}/usr/share/xsessions/plasma-mediacenter.desktop || true - # Remove the non-functional wayland session: - rm -f ${LIVE_ROOTDIR}/usr/share/wayland-sessions/plasmawayland.desktop || true + # Remove non-functional wayland session: + if [ ! -f ${LIVE_ROOTDIR}usr/lib${DIRSUFFIX}/qt5/bin/qtwaylandscanner ]; + then + rm -f ${LIVE_ROOTDIR}/usr/share/wayland-sessions/plasmawayland.desktop || true + fi # Set sane SDDM defaults on first boot (root-owned file): mkdir -p ${LIVE_ROOTDIR}/var/lib/sddm cat <<EOT > ${LIVE_ROOTDIR}/var/lib/sddm/state.conf |