You are not logged in.
Hello there.
I've recently tried to use my Thinkpad E580 for work and other programming activities, so I connected a 27'' monitor via HDMI and it worked well, but then I noticed that interface on the monitor looks excessively big, so I figured out that it's DPI issue.
I can easily change DPI for fonts and it improves the picture but I can't change DPI for all elements I see on the monitor.
Why does it happen? Is it because of xfce4, or xorg, or integrated graphics card? I'd like to fix it no matter what, because it pokes my eyes and I can't work like this.
Offline
xrandr --dpi <value>That doesn't mean everything will adapt, (it usually affects only processes started afterwards and even then some toolkits are simply not DPI aware)
You *cannot* have different DPIs per output w/ X11. Most wayland compositors provide this, though.
On X11, you can alter the outputs resolutions or scale them to end up w/ similar DPIs.
Offline
xrandr --dpi <value>That doesn't mean everything will adapt, (it usually affects only processes started afterwards and even then some toolkits are simply not DPI aware)
You *cannot* have different DPIs per output w/ X11. Most wayland compositors provide this, though.
On X11, you can alter the outputs resolutions or scale them to end up w/ similar DPIs.
I've tried xrandr a few times and it didn't seem like it changed anything. I've tried scaling and it made the picture blurry. I'll google for wayland then, thanks.
Offline
I've tried xrandr
is not a usable description of your failed efforts…
xrandr -q
xdpyinfo | grep resolutionAligned DPIs might lead to blurry results on wayland just as much, especially w/ any non-native client.
Offline
I've tried xrandr
is not a usable description of your failed efforts…
xrandr -q xdpyinfo | grep resolutionAligned DPIs might lead to blurry results on wayland just as much, especially w/ any non-native client.
the
xrandr -qsays this https://pastebin.com/acKfgCnd
and
xdpyinfo | grep resolutionthis
resolution: 96x96 dots per inchI've tried
xrandr --dpi 81and it didn't change anything, that's what I meant.
I've also created a file
/etc/X11/xorg.conf.d/90-monitor.confwith content
Section "Monitor"
Identifier "HDMI1"
DisplaySize 598 336 # In millimeters
Option "DPI" "81 x 81"
EndSectionand it didn't change anything as well.
Could you please explain what do you mean by `Aligned` in
Aligned DPIs might lead to blurry results
?
Offline