mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
startplasma-waylandsession hasn't existed for a while and the whole session launched just fine without it, so let's remove the entire argument. The binary was removed in plasma-workspace in 7884f53d3c07699dc16f07cf0aa3966802c503c8
28 lines
1,014 B
Bash
Executable file
28 lines
1,014 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2019-2021 Aleix Pol <apol@kde.org>
|
|
# SPDX-FileCopyrightText: 2019-2021 Bhushan Shah <bshah@kde.org>
|
|
# SPDX-FileCopyrightText: 2019-2020 Jonah Brüchert <jbb@kaidan.im>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
[ -f /etc/profile ] && . /etc/profile
|
|
|
|
export QT_QPA_PLATFORM=wayland
|
|
export QT_QPA_PLATFORMTHEME=KDE
|
|
export EGL_PLATFORM=wayland
|
|
|
|
export QT_QUICK_CONTROLS_STYLE=org.kde.breeze
|
|
export QT_ENABLE_GLYPH_CACHE_WORKAROUND=1
|
|
export QT_QUICK_CONTROLS_MOBILE=true
|
|
export PLASMA_INTEGRATION_USE_PORTAL=1
|
|
export PLASMA_PLATFORM=phone:handset
|
|
|
|
# if coredumpd knows about the dumps, make sure drkonqi catches them
|
|
if [[ $(cat /proc/sys/kernel/core_pattern) =~ /systemd-coredump ]]
|
|
then
|
|
export KDE_COREDUMP_NOTIFY=1
|
|
fi
|
|
|
|
# TODO port away from PLASMA_DEFAULT_SHELL into QT_QPA_PLATFORM=offscreen plasma-apply-lookandfeel --apply org.kde.plasma.phone
|
|
export PLASMA_DEFAULT_SHELL=org.kde.plasma.phoneshell
|
|
startplasma-wayland --xwayland --lockscreen --inputmethod maliit-keyboard
|