Ubuntu设置分辨率1920x1080

当Ubuntu系统中无法在‘设置’中找到1920x1080分辨率时,可以通过编辑/etc/profile并在末尾添加xrandr命令来解决。这种方法不会导致新开终端出现警告,设置后的分辨率会在重启后依然保留。
摘要由CSDN通过智能技术生成

Ubuntu设置分辨率1920x1080

有时候,因为未知原因,ubuntu的“设置->分辨率”中找不到想要的分辨率,例如1920x1080,可以通过以下方法设置。

既有的方法直接在/etc/profile中加入xrandr命令,可以解决问题,但是会导致新开的teminal中报如下警告:

X Error of failed request:  BadName (named color or font does not exist)
  Major opcode of failed request:  141 (RANDR)
  Minor opcode of failed request:  16 (RRCreateMode)
  Serial number of failed request:  55
  Current serial number in output stream:  55

修改后的方法为,编辑 /etc/profile , 在文件末尾加入:

string=`xrandr`
if [[ $string != *"1920x1080_60.00"* ]]; then
  xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
fi
xrandr --addmode Virtual1 "1920x1080_60.00"
其中,"1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
来自 cvt 1920 1080 命令

然后命令行运行:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值