是的,SDDM支持多显示器设置。要配置多显示器,请按照以下步骤操作:
[XDisplay]
ServerArguments=-nolisten tcp -dpi 96 -layout <layoutname>
其中,<layoutname>是要使用的多显示器布局的名称。
sudo nano /usr/share/X11/xorg.conf.d/20-monitor.conf
Section "Monitor"
Identifier "Monitor1"
Option "Primary" "true"
EndSection
Section "Monitor"
Identifier "Monitor2"
Option "LeftOf" "Monitor1"
EndSection
Section "Device"
Identifier "Card1"
Driver "intel"
EndSection
Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
EndSection
Section "Device"
Identifier "Card2"
Driver "intel"
EndSection
Section "Screen"
Identifier "Screen2"
Device "Card2"
Monitor "Monitor2"
EndSection
sudo systemctl restart sddm