wrap dbus

This commit is contained in:
thelamer 2025-07-16 18:00:58 -04:00
parent a21650fbd8
commit 63e5a397f5
No known key found for this signature in database
3 changed files with 10 additions and 3 deletions

View File

@ -7,7 +7,8 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="thelamer" LABEL maintainer="thelamer"
# title # title
ENV TITLE="Debian KDE" ENV TITLE="Debian KDE" \
NO_GAMEPAD=true
RUN \ RUN \
echo "**** add icon ****" && \ echo "**** add icon ****" && \

View File

@ -7,7 +7,8 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="thelamer" LABEL maintainer="thelamer"
# title # title
ENV TITLE="Debian KDE" ENV TITLE="Debian KDE" \
NO_GAMEPAD=true
RUN \ RUN \
echo "**** add icon ****" && \ echo "**** add icon ****" && \

View File

@ -49,5 +49,10 @@ if which nvidia-smi && [ "${DISABLE_ZINK}" == "false" ]; then
export GALLIUM_DRIVER=zink export GALLIUM_DRIVER=zink
fi fi
# Dbus defaults
export XDG_RUNTIME_DIR="/tmp/xdg-runtime-${PUID}"
mkdir -p -m700 "${XDG_RUNTIME_DIR}"
chown -R "${PUID}:${PGID}" "${XDG_RUNTIME_DIR}"
# Start DE # Start DE
dbus-launch /usr/bin/startplasma-x11 > /dev/null 2>&1 exec dbus-launch --exit-with-session /usr/bin/startplasma-x11 > /dev/null 2>&1