2017-11-26 17:08:10 +00:00
|
|
|
if test -z "${XDG_RUNTIME_DIR}"; then
|
|
|
|
export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir
|
|
|
|
if ! test -d "${XDG_RUNTIME_DIR}"; then
|
|
|
|
mkdir "${XDG_RUNTIME_DIR}"
|
|
|
|
chmod 0700 "${XDG_RUNTIME_DIR}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $(tty) = "/dev/tty1" ]; then
|
|
|
|
udevadm trigger
|
|
|
|
udevadm settle
|
|
|
|
|
2017-12-04 23:19:17 +00:00
|
|
|
export QML2_IMPORT_PATH=/usr/lib/qt/qml:/usr/lib/qt5/qml
|
2017-11-26 17:08:10 +00:00
|
|
|
|
|
|
|
sleep 2
|
2018-01-02 22:53:21 +00:00
|
|
|
|
|
|
|
if [ -d "/dev/dri" ]; then
|
|
|
|
ck-launch-session kwin_wayland --drm --xwayland plasma-phone 2>&1 | logger -t "$(whoami):plasma-mobile"
|
|
|
|
else
|
|
|
|
export KWIN_COMPOSE=Q
|
|
|
|
ck-launch-session kwin_wayland --framebuffer --xwayland plasma-phone 2>&1 | logger -t "$(whoami):plasma-mobile"
|
|
|
|
fi
|
2017-11-26 17:08:10 +00:00
|
|
|
fi
|
|
|
|
fi
|