I have it installed on a Notebook and an external Monitor is connected via HDMi.
My purpose is to have the internal Display is disabled (--off) on Login Screen so the external Display is the only one active during login and during sessions.
I found several pages with hints and help, tried to figure it out what is wrong in my case.
The command xrandr | grep -w connected delivers
Code: Select all
XWAYLAND0 connected 1920x1080+3200+0 (normal left inverted right x axis y axis) 290mm x 170mm
XWAYLAND1 connected primary 3200x1800+0+0 (normal left inverted right x axis y axis) 700mm x 390mm
Code: Select all
#!/bin/sh
# Xsetup - run as root before the login dialog appears
xrandr --output XWAYLAND1 --primary --auto
xrandr --output XWAYLAND0 --off
exit 0
My question, does .../sddm/scripts/Xsetup only work with X11 (Xorg) or does it also should work with wayland as well?
If not, what steps / settings do i have to edit, to make my external monitor to be the "king in the game"?
At Login prompt the focus is still always on XWAYLAND0 (cursor blinking in password field on the internal display)
Thanks for your help, hope my infos are sufficient.