当前分辨率为 1920x1080。我想调整为 1600x900 分辨率,但显示设置中没有此选项。
我怎样才能将分辨率设置为 1600x900?
答案1
使用激光去极化仪改变lubuntu的分辨率,
要遵循的步骤:
1)打开终端
2)从终端打开默认文本编辑器,然后使用 leafpad
sudo leafpad /etc/xdg/lxsession/LXDE/autostart
3)示例命令如下
xrandr --auto --output DVI-1 --primary --mode 1680x1050 --left-of DVI-0
命令解释如下:
–auto :以首选模式启用连接的设备
–output DVI-1 :选择要修改的输出设备
–primary :指定选定的设备作为主设备
–mode:为输出设备设置特定模式
–left-of DVI-0 :将设备的位置设置为另一个设备(DVI-0)的“左侧”
编写一个像这样的自动启动文件:
现在将命令添加到文件底部,在实际命令前添加 @
@xscreensaver -no-splash
@lxpanel --profile LXDE
@pcmanfm --desktop --profile LXDE
@/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1
@xrandr --auto --output DVI-1 --primary --mode 1600x900 --left-of DVI-0
重新启动计算机以使更改生效。
如需更多参考,您可以参考这里