日常填坑系列-ubuntu 双屏分辨率设置问题

本人是ubuntu18.10,双屏幕,分别为22寸和19寸。本来最佳的设置应该是1920x1080_60hz(22寸),1440x900_60hz(19寸)。但是事实总是不尽人意。每一次开机后分辨率设置总会变成1920x1080_60hz(22寸),800x600_60hz(19寸),并且改不回来,搞得我很难受。试过xrandr的一些命令,例如创建新的模式,应用新的模式什么的,但是都没有用。

一次偶然的机会看到autorandr,心里突然觉得有戏。所以查了以下。查到这个东西

Auto-detect connected display hardware and load appropiate X11 setup using xrandr

OK!这个东西可以保存一些屏幕的配置。那么开干!

第一步,安装软件

sudo apt install autorandr

第二步,将屏幕调整到你想要的最佳状态。

这一步,看你个人的方法。我的方法是

在单屏幕模式下先让19寸的屏幕作为主屏幕,重启后系统会让19寸的屏幕达到最高的分辨率。

接着再接入另外一个22寸的屏幕。切换到多屏模式,让22寸的屏幕作为主屏幕。

这一步看你个人喜好,反正目的就是让屏幕的设置达到你想要的状态。

 

第三步,保存屏幕配置

这一步是要生成第二步弄好的屏幕设置文件。

autorandr -s best

best是配置文件的名字。

 

第四步,将生成的配置文件设置为默认的配置文件

autorandr -d best

 

这是最基本的操作方式。详细的操作方式可以看autorandr的说明。使用命令可查

autorandr -h
Usage: autorandr [options]

-h, --help              get this small help
-c, --change            automatically load the first detected profile
-d, --default  make profile  the default profile
-l, --load     load profile 
-s, --save     save your current setup to profile 
-r, --remove   remove profile 
--batch                 run autorandr for all users with active X11 sessions
--current               only list current (active) configuration(s)
--config                dump your current xrandr setup
--debug                 enable verbose output
--detected              only list detected (available) configuration(s)
--dry-run               don't change anything, only print the xrandr commands
--fingerprint           fingerprint your current hardware setup
--force                 force (re)loading of a profile
--skip-options 

 

你可能感兴趣的:(ubuntu)