mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-13 20:34:22 +00:00
kde: Fallback to Plasma X11 session for basic graphics mode (#1952431)
The Plasma Wayland session does not work when kernel mode-setting has been disabled, so fall back to X11 automatically in this scenario. Signed-off-by: Neal Gompa <ngompa13@gmail.com>
This commit is contained in:
parent
ff50e7a432
commit
75e442287b
@ -22,15 +22,22 @@ EOF
|
||||
# add initscript
|
||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||
|
||||
# are we *not* able to use wayland sessions?
|
||||
if strstr "\`cat /proc/cmdline\`" nomodeset ; then
|
||||
PLASMA_SESSION_FILE="plasmax11.desktop"
|
||||
else
|
||||
PLASMA_SESSION_FILE="plasma.desktop"
|
||||
fi
|
||||
|
||||
# set up autologin for user liveuser
|
||||
if [ -f /etc/sddm.conf ]; then
|
||||
sed -i 's/^#User=.*/User=liveuser/' /etc/sddm.conf
|
||||
sed -i 's/^#Session=.*/Session=plasma.desktop/' /etc/sddm.conf
|
||||
sed -i "s/^#Session=.*/Session=${PLASMA_SESSION_FILE}/" /etc/sddm.conf
|
||||
else
|
||||
cat > /etc/sddm.conf << SDDM_EOF
|
||||
[Autologin]
|
||||
User=liveuser
|
||||
Session=plasma.desktop
|
||||
Session=${PLASMA_SESSION_FILE}
|
||||
SDDM_EOF
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user