'conky: "unknown" x11 session running' #2219
-
|
Hello! Is the console message
to be expected when running Conky on Linux Mint Cinnamon? Context: I've just installed the latest release of conky, by fetching from github; I forget whether previously I used to see the message about an unknown session. (And I am running X as against Wayland.) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Yeah... sort of. I added it in to improve WM specific behavior (e.g. struts on fluxbox) and make dealing with issues a bit quicker in some cases, not 100% sure which WM will be correctly detected yet because I don't have it in me to test all 20+ of them. Anyway, just to verify. Can you run: echo $XDG_SESSION_DESKTOP
echo $DESKTOP_SESSION
echo $GDMSESSIONand let me know whether any of those vars are set to something like "MATE" or "Marco"? If not, setting |
Beta Was this translation helpful? Give feedback.
Yeah... sort of. I added it in to improve WM specific behavior (e.g. struts on fluxbox) and make dealing with issues a bit quicker in some cases, not 100% sure which WM will be correctly detected yet because I don't have it in me to test all 20+ of them.
Anyway, just to verify. Can you run:
and let me know whether any of those vars are set to something like "MATE" or "Marco"?
If not, setting
XDG_SESSION_DESKTOPto "MATE" globally will improve how conky works on your PC (in future, does nothing special currently). It's a standard most WMs don't follow, but allows us to tweak behavior at runtime when needed. There's no MATE sp…