A linha display-setup-script
está no lugar errado no seu arquivo de configuração. Mova-o para Seat:*
(anteriormente SeatDefaults
):
[Seat:*]
display-setup-script=/path/to/display-setup.sh
O pacote inclui um arquivo de exemplo /usr/share/doc/lightdm/lightdm.conf.gz
que mostra o layout correto.
Conteúdo de display-setup.sh
:
#!/bin/sh
#xrandr's name for the external monitor connection
MONITOR=DP-5.8
#bail out if monitor not found
xrandr --query | grep -q "^$MONITOR connected" || exit 0
#the original command that does the switching
xrandr --output "$MONITOR" --mode "2560x1600" --primary
#optional: switch to vt1 and back, to fix with "blank screen" problem
chvt 1
chvt 7