[Suggestions for Improvement] 不同分辨率多屏显示,没有合适的缩放倍数,也不能分别设置缩放
Tofloor
poster avatar
188******02
deepin
2024-08-08 20:19
Author

不同分辨率多屏显示,没有合适的缩放倍数,也不能分别设置缩放

image.png

使用xrandr设置dpi失败

Reply Favorite View the author
All Replies
188******02
deepin
2024-08-08 20:21
#1

image.png
image.png

双屏之显示一个显示设备:

image.png

Reply View the author
kxmc
deepin
2024-08-09 09:35
#2

我的也是这个问题。我现在每次开机都使用这个命令来处理这种情况,希望帮到你。

其中的 eDP-1 是我的笔记本主屏幕,HDMI-1 是我的扩展屏。你修改成你自己的屏幕名称即可。

#!/bin/bash
set -xeuo pipefail
#
# 配置扩展屏幕的相关命令
#
# 配置笔记本屏幕为主屏幕
# xrandr --output eDP-1 --primary --auto
#
#
# 配置扩展屏显示在主屏幕右侧,缩放比例为1.6
xrandr --output HDMI-1 --auto --right-of eDP-1 --scale 1.6x1.6
#
#
# 调节亮度
xrandr --output HDMI-1 --brightness 1
#
#
# 解决鼠标闪烁: 缩放比例改为 0.999x0.999 就可以了
xrandr --output eDP-1 --primary --auto --scale 0.999x0.999
#
#
#

Reply View the author
188******02
deepin
2024-08-14 11:43
#3

我有一个4k屏,使用scale之后变模糊了

Reply View the author