显示设置
显示设置只有在你在显示器上操作时可用,你可以通过以下方式进行显示设置。
- KDE
- GDM
- CLI
- CMDLINE
系统设置-显示设置
在KDE桌面上,左键点击左下角的 Application Launcher
,就可以看到 System Settings
。
选择 System Settings
,在 Hardware
选项中找到 Display and Monitor
:
你可以在其中修改以下设置:
注意:如果你使用的是多个显示器,也是同样的步骤。
GDM显示设置
获取显示器信息:
rock@radxa-cm5-io:~$ cat /var/log/Xorg.0.log|grep -e "connected" -e "EDID vendor" \
-e "Monitor name:" -e "Serial No:" | grep -v "disconnected"
[ 6898.854] (II) modeset(0): Serial No: 2DH76826BL7L #显示器序列号
[ 6898.854] (II) modeset(0): Monitor name: DELL U2417H #显示器型号
[ 6898.855] (II) modeset(0): Output HDMI-1 connected #显示接口名称
[ 6899.751] (II) modeset(0): EDID vendor "DEL", prod id 16616 #显示器厂商
[ 6901.098] (II) modeset(0): EDID vendor "DEL", prod id 16616
rock@radxa-cm5-io:~$
根据以上信息,修改 /var/lib/gdm3/.config/monitors.xml
文件 monitorspec
部分:
<monitors version="2">
<configuration>
<logicalmonitor>
<x>0</x>
<y>0</y>
<!-- 缩放倍数 -->
<scale>1</scale>
<primary>yes</primary>
<transform>
<!-- 顺时针旋转 -->
<rotation>left</rotation>
<flipped>no</flipped>
</transform>
<monitor>
<monitorspec>
<!-- 显示接口名称 -->
<connector>HDMI-1</connector>
<!-- 显示器厂商 -->
<vendor>DEL</vendor>
<!-- 显示器型号 -->
<product>DELL U2417H</product>
<!-- 显示器序列号 -->
<serial>2DH76826BL7L</serial>
</monitorspec>
<mode>
<!-- 分辨率宽 -->
<width>1920</width>
<!-- 分辨率高 -->
<height>1080</height>
<!-- 刷新率 -->
<rate>60.000</rate>
</mode>
</monitor>
</logicalmonitor>
</configuration>
</monitors>
重启 GDM
sudo systemctl restart gdm