SDDM and display managers in general seem a totally unnecessary software layer. There's a perfectly good linux logon mechanism without them, so I'm writing a trivial shell script to put at the end of .bashrc or similar, to start Wayland, X11 or character-mode terminal, depending on TTY number, so I can easily choose which to start.
There's an aesthetically displeasing asymmetry between the two: Wayland starts with simple
Code: Select all
exec dbus-launch --exit-with-session startplasma-waylandCode: Select all
#!/bin/sh
exec dbus-launch --exit-with-session startplasma-x11Code: Select all
exec startx dbus-launch --exit-with-session startplasma-X11What am I doing wrong?


