How do I tell which display server my session is using, and when is it worth switching?
I keep reading that desktop Linux has moved from one display server to a newer one, and that some things behave differently depending on which is running.
I do not know which one my session is actually using, and I have hit a couple of oddities — a screen sharing tool that captures nothing, and an application that ignores my keyboard shortcut settings — that I suspect are related.
How do I check, what actually differs, and is switching worth doing?
@desktop_dilan · 5d ago
Checking takes one command:
It prints
x11orwayland. If it prints nothing useful,loginctl show-session $(loginctl | grep $USER | awk '{print $1}') -p Typegets there the long way.Switching is usually a choice on the login screen: click your username, and there is a settings control — often a small gear — offering the session types your desktop has installed. It is a per-login choice, so you can go back immediately if something breaks.
And your two symptoms are exactly the classic ones, which is a good sign your suspicion is right.
Reply
Report