0

My monitor is 4k but my graphics card isn't great at handling 4k gaming. I want to be able to switch to 1080p. My issue is that 1080p looks fuzzy. An image displayed in 1080p looks fuzzier than the same image upscaled 200% in 4k.

Daffy
  • 309

1 Answers1

1

The solution is to change the scale and filter in xrandr, but keep the resolution at 4k. For instance, my monitor is on DisplayPort-1. This will output a 1080p resolution but upscaled to 4k using nearest neighbor interpolation instead of bilinear.

For some reason, it only works when separated into two commands like this.

xrandr --size 3840x2160
xrandr --output DisplayPort-1 --filter nearest --scale 0.5
Daffy
  • 309