sh 如何在Ubuntu 16中创建和保留自定义分辨率。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 如何在Ubuntu 16中创建和保留自定义分辨率。相关的知识,希望对你有一定的参考价值。
# Based on http://ubuntuhandbook.org/index.php/2017/04/custom-screen-resolution-ubuntu-desktop/
xrandr
# eDP-1, take note of the device you want to modify
cvt 1408x792 # True 16:9 resolution: https://pacoup.com/2011/06/12/list-of-true-169-resolutions/
# Modeline "1408x792_60.00" 90.75 1408 1480 1624 1840 792 795 800 823 -hsync +vsync
sudo xrandr --newmode "1408x792_60.00" 90.75 1408 1480 1624 1840 792 795 800 823 -hsync +vsync
sudo xrandr --addmode eDP-1 "1408x792_60.00"
echo xrandr --newmode "1408x792_60.00" 90.75 1408 1480 1624 1840 792 795 800 823 -hsync +vsync >> ~/.profile
echo xrandr --addmode eDP-1 "1408x792_60.00" >> ~/.profile
# Open Displays and choose the new custom resolution
以上是关于sh 如何在Ubuntu 16中创建和保留自定义分辨率。的主要内容,如果未能解决你的问题,请参考以下文章