Most suggestions were involving around changing the font DPI. But this has undesirable effects, such as fonts being so much larger than other elements. I opted in to change scaling/resolution. To be honest from few meters away, I can't tell the difference between FullHD and 4K anyway.
The solution was setting the scaling with xrandr. To be able to apply the settings at startup, one should use the greeter-setup-script and session-setup-script options in lightdm. Below is how my /etc/lightdm/lightdm.conf file looks like
1 2 3 4 5 | [SeatDefaults] user-session=xfce greeter-show-manual-login=true greeter-setup-script=/etc/profile.d/lightdm.sh session-setup-script=/etc/profile.d/lightdm.sh |
1 | |
1 2 3 4 5 6 7 | #!/bin/sh if [ ! -z "$DISPLAY" ]; then # Scale the display #/usr/bin/xrandr --output HDMI-0 --scale 0.5x0.5 # Alternative method, this may give better results /usr/bin/xrandr --output HDMI-0 --scale-from 1920x1080 fi |
There was one problem with this. I use KODI and it does not seem to care about the scaling. Therefore it didnt fit to screen. In my system KODI has it's own user. I created a .profile file under this user with the following information to rescale the display when KODI starts.
1 2 | #!/usr/bin/env bash /usr/bin/xrandr --output HDMI-0 --scale 1x1 |
If anything goes wrong. You should check your file permissions.
thanks!
ReplyDelete