Views:
20,594
Votes: 1
✅ Solution
Tags:
xorg
multiple-monitors
display-resolution
xrandr
scaling
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1194001
Title:
Setting monitor scaling to 200% with xrandr
ID:
/2019/12/05/Setting-monitor-scaling-to-200_-with-xrandr
Created:
December 5, 2019
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
You are just missing the --scale 2x2
argument. So use:
xrandr \
--output DP-4 --primary --pos 0x0 --scale 2x2 \
--output DP-2 --pos 3840x0 --scale 2x2 \
--output eDP-1-1 --off
Note: Double quoting the monitor and position is unnecessary so I removed the "
.