You are not logged in.
Pages: 1
When I start KDE from SDDM, regardless if I use option "plasma" or "xinitrc", I see only desktop and the auto-started apps.
No panels or anything else.
I have to go to konsole and run 'kstart5 plasmashell' to fix that.
My .xinitrc looks is ruther minimalistic:
export DESKTOP_SESSION=plasma
exec startplasma-x11Not sure what I'm doing wrong, it worked before but I did some upgrades meanwhile.
Last edited by binary_runner (2020-10-27 08:25:31)
Offline
That isn't a complete xinitrc, and manually setting DESKTOP_SESSION before starting plasma makes no sense.
https://wiki.archlinux.org/index.php/Xinit#xinitrc
Mod note: Moving to NC.
If you still have problems after fixing your xinitrc, post the log for a faulty X session.
Last edited by WorMzy (2020-10-27 08:34:00)
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
As I did not found any '/etc/X11/xinit/xinitrc', I added to my xinitrc :
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?* ; do
[ -x "$f" ] && . "$f"
done
unset f
fiIn '/etc/X11/xinit/xinitrc.d' I have only two files: 40-libcanberra-gtk-module.sh, 50-systemd-user.sh .
I know the first is not used because it's for Gnome.
The second one just sets 'systemctl --user import-environment DISPLAY XAUTHORITY' - not calling this was the reason the plasmashell did not start as expected ?
Offline
Pages: 1