You are not logged in.
I note there are little information icons next to the resolution (i inside a small circle). Does clicking on those relate anything useful?
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
You shouldn't see an X11 screen here... Do you have QT_QPA_PLATFORM=xcb exported globally somewhere? qt5-wayland installed?
Online
@ewaller - no nothing useful
@V1del:
Yes qt5-wayland installed.
I start with this script, using xcb fails to start plasma, it's just loading...
using startx
```bash
~/.xinitrc
#!/usr/bin/env bash
export DESKTOP_SESSION=plasma
export XDG_SESSION_TYPE=wayland
if [[ "${XDG_SESSION_TYPE}" = "wayland" ]]; then
export QT_QPA_PLATFORM="wayland;xcb"
export CLUTTER_BACKEND="wayland"
export SDL_VIDEODRIVER="wayland"
export GDK_BACKEND=x11="wayland"
export MOZ_ENABLE_WAYLAND=1
startplasma-wayland
else
startplasma-x11
fi
```
Last edited by linken (2023-02-12 19:49:24)
Offline
@V1del: I tried to do only:
startplasma-wayland
not using startx, this worked perfectly thanks both of you.
Offline
Some more information on why that works: You should never use startx to start a wayland session. startx will start up an x server and then the desktop environment inside that. For wayland, you start the desktop environment directly, it will not use an external display server, but provide its own server/compositor.
Last edited by progandy (2023-02-12 20:22:47)
| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |
Offline
Alright, thanks
Offline