This commit is contained in:
marcusfpereira 2025-03-07 17:39:55 -03:00 committed by GitHub
commit e385de53d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,11 +72,18 @@ RustDesk now has experimental Wayland support since version 1.2.0.
#### Login Screen
Login screen using Wayland is not supported yet. If you wanna access login screen after reboot or logout with RustDesk, you need to change login screen to X11, please modify below line to `WaylandEnable=false` in `/etc/gdm/custom.conf` or `/etc/gdm3/custom.conf`:
Login screen using Wayland is not supported yet. If you wanna access login screen after reboot or logout with RustDesk, you need to change login screen to X11.
For gdm modify below line to `WaylandEnable=false` in `/etc/gdm/custom.conf` or `/etc/gdm3/custom.conf`:
```ini
#WaylandEnable=false
```
For sddm add a configuration `/etc/sddm.conf.d/10-x11.conf `:
```ini
[General]
DisplayServer=x11
```
{{% notice note %}}
Please **reboot** to make above changes taking effect.