Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Comments on How to reduce DPI of external monitor using xrandr

Post

How to reduce DPI of external monitor using xrandr

+1
−0

Have

I have the DPI on my laptop set in .Xresources with Xft.dpi: 192. I am outputting to the external monitor with:

xrandr --output HDMI-2 --auto --rotate left --right-of eDP-1

Want

I want to decrease the DPI of the external monitor. Because the screen is bigger, everything gets blown up.

Tried

I tried using the --dpi option but it affects no change:

xrandr --output HDMI-2 --auto --rotate left --dpi 92 --right-of eDP-1
History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

3 comment threads

Maybe your output device is incorrect try using `xdpyinfo` to check what your are using. (1 comment)
I don't understand what you mean by "reduce the DPI". DPI is a physical characteristic of a monitor a... (4 comments)
Perhaps --auto overrides --dpi? > --auto For connected but disabled outputs, this will enabl... (2 comments)
Perhaps --auto overrides --dpi? > --auto For connected but disabled outputs, this will enabl...
Quasímodo‭ wrote over 1 year ago

Perhaps --auto overrides --dpi?

  --auto For connected but disabled outputs, this will enable them using
          their first preferred mode (or, something close to 96dpi if they
mcp‭ wrote over 1 year ago

Good thought. Tried it specifically setting mode and it did not work:

xrandr --output HDMI-2 --mode 1920x1080 --rotate left --dpi 92 --right-of eDP-1