So I’m assuming that my issue is going to be simple, and i simply do not have enough Linux beard yet.
I’m trying to configure the very first login screen after boot, and lock screens too TBH, on my desktop. I’m running KDE Plasma, X11, and SDDM.
i have two displays. on the left, a portrait mode 1440p display. on the right, a 1080p ultrawide, no rotation (Because an ultrawide on its side is a LOT of website.)
I can’t seem to get any xrandr commands to kick off.
My sddm.conf looks thus:
[XDisplay]
DisplayCommand=/usr/share/sddm/scripts/Xsetup
[General]
Numlock=on
and my Xsetup, thus:
#!/bin/sh
# Xsetup - run as root before the login dialog appears
xrandr --output HDMI-0 --mode 1440x2560 --pos 0x0 --roate l --output HDMI-1 --mode 2560x1080 --pos 1440x994 --roate normal
The xrandr command isn’t being sent, and my monitors are reversed (hdmi1 on the left, HDMI2 on the right), plus my 1440p display not in portrait mode.
For now, I’m just trying to make the login screen not sideways. Ultimately, I’d like the login and lock screens to ONLY display on HDMI1, with HDMI0 just being blank or black.
xrandr output here as well, in case it’s needed:
Screen 0: minimum 8 x 8, current 4000 x 2560, maximum 32767 x 32767
HDMI-0 connected 1440x2560+0+0 left (normal left inverted right x axis y axis) 597mm x 336mm
2560x1440 59.95*+
1920x1080 60.00 59.94 50.00
1680x1050 59.95
1600x900 60.00
1280x1024 75.02 60.02
1280x800 59.81
1280x720 60.00 59.94 50.00
1024x768 75.03 60.00
800x600 75.00 60.32
720x576 50.00
720x480 59.94
640x480 75.00 59.94 59.93
DP-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 connected primary 2560x1080+1440+994 (normal left inverted right x axis y axis) 690mm x 291mm
2560x1080 60.00*+ 144.00 120.00 75.00
1920x1080 119.88 60.00 59.94 50.00
1680x1050 59.95
1440x900 59.89
1280x1080 60.00
1280x1024 75.02 60.02
1280x720 60.00 59.94 50.00
1152x864 75.00
1024x768 75.03 60.00
800x600 75.00 60.32
720x576 50.00
720x480 59.94
640x480 75.00 59.94 59.93
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
If someone could help, I’d very much appreciate it.